Skip to content

Commit

Permalink
Crate updates
Browse files Browse the repository at this point in the history
Tried to run `cargo update`, but that broke things, see
rust-lang/hashbrown#564.

Updated:
- itertools to 0.14
- kiddo to 5
- petgraph to 0.7
- notify to 8
- wasmtime and wasmtime-wasi to 29
  Note: this causes even bigger problems if one were to try to run
  `cargo update` since even if one were to add certain transitive
  dependencies to common/Cargo.toml and enable the necessary feature
  flags, a transitive dependency here also depends on allocator-api2 but
  without exposing the proper feature flag. A fix is underway, see
  bytecodealliance/regalloc2#209
- axum to 0.8
- discord-sdk to 0.4
- minifb to 0.28
  • Loading branch information
Youser Nayme authored and Youser Nayme committed Jan 24, 2025
1 parent e62f107 commit 730e61e
Show file tree
Hide file tree
Showing 8 changed files with 442 additions and 359 deletions.
778 changes: 430 additions & 348 deletions Cargo.lock

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ ordered-float = { version = "4.2", default-features = true }
num = { version = "0.4" }
num-traits = { version = "0.2" }
vek = { version = "0.17.0", features = ["serde", "mint"] }
itertools = { version = "0.13" }
itertools = { version = "0.14" }

serde = { version = "1.0.118", features = ["derive"] }
serde_json = { version = "1.0.50" }
Expand All @@ -182,6 +182,7 @@ rustls = { version = "0.23", default-features = false, features = ["std"] }
quinn = { version = "0.11" }

noise = { version = "0.9", default-features = false }
kiddo = "5"

[patch.crates-io]
# until next specs release
Expand Down
6 changes: 3 additions & 3 deletions common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@ ron = { workspace = true, optional = true }
# csv export
csv = { version = "1.1.3", optional = true }
# graphviz exporters
petgraph = { version = "0.6", optional = true }
petgraph = { version = "0.7", optional = true }
# K-d trees used for RRT pathfinding
kiddo = { version = "4.2.0", optional = true }
kiddo = { workspace = true, optional = true }
clap = { workspace = true, optional = true }

# Data structures
Expand Down Expand Up @@ -104,7 +104,7 @@ tracing-subscriber = { version = "0.3.7", default-features = false, features = [
"smallvec",
"env-filter",
] }
petgraph = "0.6.0"
petgraph = "0.7"

[[bench]]
name = "chonk_benchmark"
Expand Down
2 changes: 1 addition & 1 deletion common/dynlib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ edition = "2021"
[dependencies]
find_folder = {version = "0.3.0"}
libloading = {version = "0.8"}
notify = {version = "7.0.0"}
notify = {version = "8.0.0"}
tracing = { workspace = true }
4 changes: 2 additions & 2 deletions common/state/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ toml = { version = "0.8", optional = true }
tar = { version = "0.4.37", optional = true }
bincode = { workspace = true, optional = true }
timer-queue = "0.1.0"
wasmtime = { version = "26.0.1", optional = true , features = ["component-model", "async"] }
wasmtime-wasi = { version = "26.0.1", optional = true }
wasmtime = { version = "29.0.1", optional = true , features = ["component-model", "async"] }
wasmtime-wasi = { version = "29.0.1", optional = true }
async-trait = { workspace = true }
bytes = "^1"
futures = "0.3.30"
Expand Down
2 changes: 1 addition & 1 deletion server-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ rand = { workspace = true }
specs = { workspace = true }

#HTTP
axum = { version = "0.7" }
axum = { version = "0.8" }
hyper = "1"
http-body-util = "0.1"
prometheus = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion voxygen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ sha2 = { workspace = true }
bitflags = { workspace = true, features = ["serde"] }

# Discord RPC
discord-sdk = { version = "0.3.0", optional = true }
discord-sdk = { version = "0.4", optional = true }
enum-map = { workspace = true }

[target.'cfg(target_os = "macos")'.dependencies]
Expand Down
4 changes: 2 additions & 2 deletions world/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ rayon = { workspace = true }
serde = { workspace = true }
ron = { workspace = true }
# inline_tweak = { workspace = true, features = ["derive"] }
kiddo = "4.2.0"
kiddo = { workspace = true }
fixed = "1"
strum = { workspace = true }

Expand Down Expand Up @@ -79,7 +79,7 @@ tracing-subscriber = { version = "0.3.7", default-features = false, features = [
"smallvec",
"env-filter",
] }
minifb = "0.27"
minifb = "0.28"
rusqlite = { workspace = true }
svg_fmt = "0.4"

Expand Down

0 comments on commit 730e61e

Please sign in to comment.