Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/Cargo.toml b/Cargo.toml index cd8d748675..37e5dbb444 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -128,7 +128,7 @@ object = { version = "0.36.7", default-features = false, features = [ "pe", ] } postcard = { version = "1.1.3", features = ["alloc"] } -process-wrap = { version = "8.2.1", features = ["std"] } +process-wrap = { version = "9.1.0", features = ["std"] } pulldown-cmark-to-cmark = "10.0.4" pulldown-cmark = { version = "0.9.6", default-features = false } rayon = "1.10.0" @@ -147,16 +147,16 @@ serde = { version = "1.0.219" } serde_derive = { version = "1.0.219" } serde_json = "1.0.140" rustc-hash = "2.1.1" -rustc-literal-escaper = "0.0.4" +rustc-literal-escaper = "0.0.7" smallvec = { version = "1.15.1", features = [ "const_new", "union", "const_generics", ] } smol_str = "0.3.2" -temp-dir = "0.1.16" +temp-dir = "0.2.0" text-size = "1.1.1" -toml = "0.9.8" +toml = "1.1.2" tracing = { version = "0.1.41", default-features = false, features = ["std"] } tracing-tree = "0.4.0" tracing-subscriber = { version = "0.3.20", default-features = false, features = [ @@ -172,14 +172,13 @@ url = "2.5.4" xshell = "0.2.7" thin-vec = "0.2.16" petgraph = { version = "0.8.2", default-features = false } - -# We need to freeze the version of the crate, as the raw-api feature is considered unstable -dashmap = { version = "=6.1.0", features = ["raw-api", "inline"] } -# We need to freeze the version of the crate, as it needs to match with dashmap -hashbrown = { version = "0.14.*", features = [ +hashbrown = { version = "0.17.0", features = [ "inline-more", ], default-features = false } +# We need to freeze the version of the crate, as the raw-api feature is considered unstable +dashmap = { version = "=6.2.1", features = ["raw-api", "inline"] } + [workspace.lints.rust] # remember to update RUSTFLAGS in ci.yml if you add something here |