Skip to content

Commit

Permalink
example deps updates
Browse files Browse the repository at this point in the history
  • Loading branch information
StuartHarris committed Jan 22, 2025
1 parent fdece2c commit 1e17731
Show file tree
Hide file tree
Showing 53 changed files with 12,847 additions and 10,050 deletions.
189 changes: 110 additions & 79 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.80"

[workspace.dependencies]
anyhow = "1.0.91"
serde = "1.0.213"
anyhow = "1.0.95"
serde = "1.0.217"

[workspace.lints.rust]
unsafe_code = "forbid"
Expand Down
6 changes: 3 additions & 3 deletions crux_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ path = "src/main.rs"

[dependencies]
anyhow.workspace = true
clap = { version = "4.3.24", features = ["derive"] }
console = "0.15.8"
clap = { version = "4.5.27", features = ["derive"] }
console = "0.15.10"
ignore = "0.4.23"
ramhorns = "1.0.1"
serde = { workspace = true, features = ["derive"] }
similar = { version = "2.6.0", features = ["inline"] }
similar = { version = "2.7.0", features = ["inline"] }
toml = "0.8.19"
14 changes: 7 additions & 7 deletions crux_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,26 +19,26 @@ all-features = true
[dependencies]
anyhow.workspace = true
bincode = "1.3.3"
crossbeam-channel = "0.5.13"
crossbeam-channel = "0.5.14"
crux_macros = { version = "0.4.3", path = "../crux_macros" }
erased-serde = "0.4"
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.137"
slab = "0.4.9"
thiserror = "1.0.65"
thiserror = "2.0.11"

[dev-dependencies]
assert_fs = "1.0.13"
assert_fs = "1.1.2"
assert_matches = "1.5"
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.217", features = ["derive"] }
static_assertions = "1.1"
rand = "0.8"
url = "2.5.2"
uuid = { version = "1.11.0", features = ["v4", "serde"] }
url = "2.5.4"
uuid = { version = "=1.11.0", features = ["v4", "serde"] }
2 changes: 1 addition & 1 deletion crux_core/src/typegen.rs
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ pub enum TypeGenError {
TypeTracing(String),
#[error("value tracing failed: {0}")]
ValueTracing(String),
#[error("type tracing failed: {0} {}", DESERIALIZATION_ERROR_HINT)]
#[error("type tracing failed: {0} {hint}", hint = DESERIALIZATION_ERROR_HINT)]
Deserialization(String),
#[error("code has been generated, too late to register types")]
LateRegistration,
Expand Down
16 changes: 8 additions & 8 deletions crux_http/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,21 @@ typegen = ["crux_core/typegen"]

[dependencies]
anyhow.workspace = true
async-trait = "0.1.83"
async-trait = "0.1.85"
crux_core = { version = "0.11.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.16"
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.137"
thiserror = "2.0.11"
url = "2.5.4"
web-sys = { optional = true, version = "0.3.77", features = ["TextDecoder"] }

[dev-dependencies]
assert_fs = "1.0.13"
assert_fs = "1.1.2"
futures-test = "0.3"
assert_matches = "1.5"
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.11.0", path = "../crux_core" }
serde = { workspace = true, features = ["derive"] }
serde_bytes = "0.11.15"
thiserror = "1.0.65"
thiserror = "2.0.11"
10 changes: 5 additions & 5 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"
quote = "1.0.37"
syn = "2.0.82"
proc-macro2 = "1.0.93"
quote = "1.0.38"
syn = "2.0.96"

[dev-dependencies]
crux_core = { path = "../crux_core" }
crux_http = { path = "../crux_http" }
insta = "1.40"
insta = "1.42"
prettyplease = "0.2"
serde = { version = "1.0.213", features = ["derive"] }
serde = { version = "1.0.217", features = ["derive"] }
6 changes: 3 additions & 3 deletions crux_time/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ rust-version.workspace = true
typegen = ["crux_core/typegen"]

[dependencies]
chrono = { version = "0.4.38", features = ["serde"], optional = true }
chrono = { version = "0.4.39", features = ["serde"], optional = true }
crux_core = { version = "0.11.0", path = "../crux_core" }
serde = { workspace = true, features = ["derive"] }
thiserror = "1.0.65"
thiserror = "2.0.11"

[dev-dependencies]
serde_json = "1.0.132"
serde_json = "1.0.137"
Loading

0 comments on commit 1e17731

Please sign in to comment.