Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Snowiiii committed Sep 6, 2024
1 parent 15cceb5 commit dad4798
Show file tree
Hide file tree
Showing 11 changed files with 279 additions and 291 deletions.
509 changes: 240 additions & 269 deletions Cargo.lock

Large diffs are not rendered by default.

22 changes: 20 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
[workspace]
resolver = "2"
members = [ "pumpkin-config", "pumpkin-core", "pumpkin-entity", "pumpkin-inventory", "pumpkin-macros/", "pumpkin-plugin", "pumpkin-protocol/", "pumpkin-registry/", "pumpkin-world", "pumpkin/"]
members = [
"pumpkin-config",
"pumpkin-core",
"pumpkin-entity",
"pumpkin-inventory",
"pumpkin-macros/",
"pumpkin-plugin",
"pumpkin-protocol/",
"pumpkin-registry/",
"pumpkin-world",
"pumpkin/",
]

[workspace.package]
version = "0.1.0"
Expand All @@ -13,7 +24,14 @@ codegen-units = 1

[workspace.dependencies]
log = "0.4"
tokio = { version = "1.39.2", features = ["net", "macros", "rt-multi-thread", "fs", "io-util", "sync"] }
tokio = { version = "1.40", features = [
"net",
"macros",
"rt-multi-thread",
"fs",
"io-util",
"sync",
] }
rayon = "1.10.0"
uuid = { version = "1.10.0", features = ["serde", "v3"] }
derive_more = { version = "1.0.0", features = ["full"] }
Expand Down
4 changes: 2 additions & 2 deletions pumpkin-config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ edition.workspace = true

[dependencies]
pumpkin-core = { path = "../pumpkin-core" }
serde.workspace = true
log.workspace = true

serde = "1.0"
toml = "0.8"

log.workspace = true
2 changes: 1 addition & 1 deletion pumpkin-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ edition.workspace = true

[dependencies]
serde.workspace = true
fastnbt = { git = "https://github.com/owengage/fastnbt.git" }
uuid.workspace = true
fastnbt = { git = "https://github.com/owengage/fastnbt.git" }
colored = "2"
md5 = "0.7.0"

Expand Down
6 changes: 4 additions & 2 deletions pumpkin-inventory/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@ version.workspace = true
edition.workspace = true

[dependencies]
# For items
pumpkin-world = { path = "../pumpkin-world"}

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

# For items
pumpkin-world = { path = "../pumpkin-world"}

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

[dependencies]
proc-macro2 = "1.0.86"
quote = "1.0.37"
syn = "2.0.76"
proc-macro2 = "1.0"
quote = "1.0"
syn = "2.0"
4 changes: 2 additions & 2 deletions pumpkin-plugin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ version.workspace = true
edition.workspace = true

[dependencies]
extism = "1.5.0"
log.workspace = true
serde.workspace = true
log.workspace = true
extism = "1.6.0"
2 changes: 1 addition & 1 deletion pumpkin-protocol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ serde_json = "1.0"

flate2 = "1.0.33"

thiserror = "1.0.63"
thiserror = "1.0"
log.workspace = true
num-traits = "0.2"
num-derive = "0.4"
Expand Down
1 change: 0 additions & 1 deletion pumpkin-registry/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,5 @@ pumpkin-core = { path = "../pumpkin-core"}

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

serde.workspace = true
8 changes: 3 additions & 5 deletions pumpkin-world/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,14 @@ edition.workspace = true
[dependencies]
pumpkin-core = { path = "../pumpkin-core"}


fastnbt = { git = "https://github.com/owengage/fastnbt.git" }
fastsnbt = "0.2"
tokio.workspace = true
rayon.workspace = true
derive_more.workspace = true
itertools = "0.13.0"
thiserror = "1.0.63"
futures = "0.3.30"
flate2 = "1.0.33"
thiserror = "1.0"
futures = "0.3"
flate2 = "1.0"
serde.workspace = true
serde_json = "1.0"
static_assertions = "1.1.0"
Expand Down
6 changes: 3 additions & 3 deletions pumpkin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ pumpkin-registry = { path = "../pumpkin-registry"}
# config
serde.workspace = true
serde_json = "1.0"
toml = "0.8.19"
toml = "0.8"

bytes = "1.7"

rand = "0.8.5"

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

ctrlc = "3.4"

Expand All @@ -47,7 +47,7 @@ digest = "=0.11.0-pre.9"
hmac = "0.12.1"
sha2 = "0.10.8"

thiserror = "1.0.63"
thiserror = "1.0"

# icon loading
base64 = "0.22.1"
Expand Down

0 comments on commit dad4798

Please sign in to comment.