Skip to content

Commit

Permalink
More workspace dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Snowiiii committed Oct 21, 2024
1 parent 1121102 commit 287f466
Show file tree
Hide file tree
Showing 9 changed files with 44 additions and 41 deletions.
4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ tokio = { version = "1.40", features = [
"sync",
] }

thiserror = "1.0"
num-traits = "0.2"
num-derive = "0.4"

# Concurrency/Parallelism and Synchronization
rayon = "1.10.0"
parking_lot = "0.12.3"
Expand Down
2 changes: 1 addition & 1 deletion pumpkin-config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ serde.workspace = true
log.workspace = true

toml = "0.8"
serde-inline-default = "0.2.1"
serde-inline-default = "0.2.2"
5 changes: 3 additions & 2 deletions pumpkin-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ edition.workspace = true
[dependencies]
serde.workspace = true
uuid.workspace = true
num-traits.workspace = true
num-derive.workspace = true

fastnbt = { git = "https://github.com/owengage/fastnbt.git" }
colored = "2"
md5 = "0.7.0"

num-traits = "0.2.19"
num-derive = { version = "0.4.2" }
8 changes: 4 additions & 4 deletions pumpkin-inventory/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ edition.workspace = true
pumpkin-world = { path = "../pumpkin-world" }

log.workspace = true

num-traits = "0.2"
num-derive = "0.4"
thiserror = "1.0.63"
itertools.workspace = true
crossbeam.workspace = true
tokio.workspace = true
thiserror.workspace = true

num-traits.workspace = true
num-derive.workspace = true
7 changes: 4 additions & 3 deletions pumpkin-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@ edition.workspace = true
proc-macro = true

[dependencies]
serde.workspace = true
itertools.workspace = true

proc-macro2 = "1.0"
quote = "1.0"
syn = "2.0"
serde.workspace = true
itertools.workspace = true
serde_json = "1.0.128"
serde_json = "1.0.132"
17 changes: 8 additions & 9 deletions pumpkin-protocol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,21 @@ pumpkin-macros = { path = "../pumpkin-macros" }
pumpkin-world = { path = "../pumpkin-world" }
pumpkin-core = { path = "../pumpkin-core" }

bytes = "1.7"

uuid.workspace = true

serde.workspace = true
thiserror.workspace = true
itertools.workspace = true
log.workspace = true

flate2 = "1.0"
num-traits.workspace = true
num-derive.workspace = true

thiserror = "1.0"
log.workspace = true
num-traits = "0.2"
num-derive = "0.4"
bytes = "1.7"

flate2 = "1.0"

# encryption
aes = "0.8.4"
cfb8 = "0.8.1"

itertools.workspace = true
fastnbt = { git = "https://github.com/owengage/fastnbt.git" }
4 changes: 2 additions & 2 deletions pumpkin-registry/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition.workspace = true
pumpkin-protocol = { path = "../pumpkin-protocol" }
pumpkin-core = { path = "../pumpkin-core" }

serde.workspace = true

# nbt
fastnbt = { git = "https://github.com/owengage/fastnbt.git" }

serde.workspace = true
19 changes: 9 additions & 10 deletions pumpkin-world/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,30 +7,29 @@ edition.workspace = true
pumpkin-core = { path = "../pumpkin-core" }
pumpkin-macros = { path = "../pumpkin-macros" }

fastnbt = { git = "https://github.com/owengage/fastnbt.git" }
tokio.workspace = true
rayon.workspace = true
derive_more.workspace = true
itertools.workspace = true
thiserror = "1.0"
thiserror.workspace = true
serde.workspace = true
log.workspace = true
parking_lot.workspace = true

num-traits.workspace = true
num-derive.workspace = true
futures = "0.3"

# Compression
flate2 = "1.0"
lz4 = "1.11.1"
lz4 = "1.28.0"

serde.workspace = true
serde_json = "1.0"
enum_dispatch = "0.3.13"
derive-getters = "0.5.0"

log.workspace = true

parking_lot.workspace = true
fastnbt = { git = "https://github.com/owengage/fastnbt.git" }

noise = "0.9.0"

rand = "0.8.5"

num-traits = "0.2"
num-derive = "0.4"
19 changes: 9 additions & 10 deletions pumpkin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,15 @@ pumpkin-protocol = { path = "../pumpkin-protocol" }
pumpkin-registry = { path = "../pumpkin-registry" }

itertools.workspace = true
log.workspace = true
crossbeam.workspace = true
uuid.workspace = true
tokio.workspace = true
rayon.workspace = true
thiserror.workspace = true

num-traits.workspace = true
num-derive.workspace = true

# config
serde.workspace = true
Expand All @@ -24,8 +33,6 @@ bytes = "1.7"

rand = "0.8.5"

num-traits = "0.2"
num-derive = "0.4"
num-bigint = "0.4"

ctrlc = "3.4"
Expand All @@ -49,17 +56,9 @@ digest = "=0.11.0-pre.9"
hmac = "0.12.1"
sha2 = "0.10.8"

thiserror = "1.0"

# icon loading
base64 = "0.22.1"
png = "0.17.14"

# logging
simple_logger = { version = "5.0.0", features = ["threads"] }
log.workspace = true

crossbeam.workspace = true
uuid.workspace = true
tokio.workspace = true
rayon.workspace = true

0 comments on commit 287f466

Please sign in to comment.