Skip to content

Commit

Permalink
deps
Browse files Browse the repository at this point in the history
  • Loading branch information
StuartHarris committed Dec 8, 2024
1 parent a311e15 commit fc2aab6
Show file tree
Hide file tree
Showing 8 changed files with 449 additions and 198 deletions.
597 changes: 424 additions & 173 deletions Cargo.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ keywords = ["crux", "crux_core", "cross-platform-ui", "ffi", "wasm"]
rust-version = "1.66"

[workspace.dependencies]
anyhow = "1.0.91"
serde = "1.0.213"
anyhow = "1.0.94"
serde = "1.0.215"

[workspace.lints.rust]
unsafe_code = "forbid"
Expand Down
12 changes: 6 additions & 6 deletions crux_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ console = "0.15.8"
guppy = "0.17.4"
ignore = "0.4.23"
lazy-regex = "3.3.0"
libc = "0.2.161"
libc = "0.2.167"
ramhorns = "1.0.1"
rustdoc-json = "0.9.2"
rustdoc-types = "0.32.2"
rustdoc-json = "0.9.3"
rustdoc-types = "0.33.0"
serde = { workspace = true, features = ["derive"] }
serde_json = "1.0.132"
serde_json = "1.0.133"
similar = { version = "2.6.0", features = ["inline"] }
thiserror = "2.0.3"
tokio = { version = "1.41.0", features = ["full"] }
thiserror = "2.0.5"
tokio = { version = "1.42.0", features = ["full"] }
tokio-fd = "0.3.0"
toml = "0.8.19"

Expand Down
8 changes: 4 additions & 4 deletions crux_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ futures = "0.3.31"
serde = { workspace = true, features = ["derive"] }
serde-generate = { version = "0.26.0", optional = true }
serde-reflection = { version = "0.4.0", optional = true }
serde_json = "1.0.132"
serde_json = "1.0.133"
slab = "0.4.9"
thiserror = "1.0.65"
thiserror = "2.0.5"

[dev-dependencies]
assert_fs = "1.0.13"
Expand All @@ -37,8 +37,8 @@ async-channel = "2.3"
crux_http = { path = "../crux_http" }
crux_time = { path = "../crux_time" }
doctest_support = { path = "../doctest_support" }
serde = { version = "1.0.213", features = ["derive"] }
serde = { version = "1.0.215", features = ["derive"] }
static_assertions = "1.1"
rand = "0.8"
url = "2.5.2"
url = "2.5.4"
uuid = { version = "1.11.0", features = ["v4", "serde"] }
12 changes: 6 additions & 6 deletions crux_http/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@ anyhow.workspace = true
async-trait = "0.1.83"
crux_core = { version = "0.10.0", path = "../crux_core" }
derive_builder = "0.20.2"
encoding_rs = { version = "0.8.34", optional = true }
encoding_rs = { version = "0.8.35", optional = true }
futures-util = "0.3"
http-types = { package = "http-types-red-badger-temporary-fork", version = "2.12.0", default-features = false }
pin-project-lite = "0.2.14"
pin-project-lite = "0.2.15"
serde = { workspace = true, features = ["derive"] }
serde_bytes = "0.11"
serde_json = "1.0.132"
thiserror = "1.0.65"
url = "2.5.2"
web-sys = { optional = true, version = "0.3.72", features = ["TextDecoder"] }
serde_json = "1.0.133"
thiserror = "2.0.5"
url = "2.5.4"
web-sys = { optional = true, version = "0.3.76", features = ["TextDecoder"] }

[dev-dependencies]
assert_fs = "1.0.13"
Expand Down
2 changes: 1 addition & 1 deletion crux_kv/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ anyhow.workspace = true
crux_core = { version = "0.10.0", path = "../crux_core" }
serde = { workspace = true, features = ["derive"] }
serde_bytes = "0.11.15"
thiserror = "1.0.65"
thiserror = "2.0.5"
8 changes: 4 additions & 4 deletions crux_macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ proc-macro = true
[dependencies]
darling = "0.20.10"
proc-macro-error = "1.0.4"
proc-macro2 = "1.0.89"
proc-macro2 = "1.0.92"
quote = "1.0.37"
syn = "2.0.82"
syn = "2.0.90"

[dev-dependencies]
crux_core = { path = "../crux_core" }
crux_http = { path = "../crux_http" }
insta = "1.40"
insta = "1.41"
prettyplease = "0.2"
serde = { version = "1.0.213", features = ["derive"] }
serde = { version = "1.0.215", features = ["derive"] }
4 changes: 2 additions & 2 deletions crux_time/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ typegen = ["crux_core/typegen"]
crux_core = { version = "0.10.0", path = "../crux_core" }
serde = { workspace = true, features = ["derive"] }
chrono = { version = "0.4.38", features = ["serde"], optional = true }
thiserror = "1.0.65"
thiserror = "2.0.5"

[dev-dependencies]
serde_json = "1.0.132"
serde_json = "1.0.133"

0 comments on commit fc2aab6

Please sign in to comment.