Skip to content

Commit

Permalink
deps + tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
StuartHarris committed Sep 20, 2023
1 parent 83e0f1f commit c3a3601
Show file tree
Hide file tree
Showing 33 changed files with 1,269 additions and 1,575 deletions.
273 changes: 130 additions & 143 deletions Cargo.lock

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ members = [
"crux_platform",
"crux_time"
]
resolver = "1"

[workspace.package]
authors = ["Red Badger Consulting Limited"]
Expand All @@ -18,5 +19,5 @@ keywords = ["crux", "crux_core", "cross-platform-ui", "ffi", "wasm"]
rust-version = "1.66"

[workspace.dependencies]
anyhow = "1.0.73"
serde = "1.0.183"
anyhow = "1.0.75"
serde = "1.0.188"
4 changes: 2 additions & 2 deletions crux_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ path = "src/main.rs"

[dependencies]
anyhow.workspace = true
clap = { version = "4.3.21", features = ["derive"] }
clap = { version = "4.3.24", features = ["derive"] }
console = "0.15.7"
ignore = "0.4.20"
ramhorns = "0.14.0"
serde = { workspace = true, features = ["derive"] }
similar = { version = "2.2.1", features = ["inline"] }
toml = "0.7.6"
toml = "0.8.0"
8 changes: 4 additions & 4 deletions crux_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ crossbeam-channel = "0.5.8"
derive_more = "0.99.17"
futures = "0.3.28"
serde = { workspace = true, features = ["derive"] }
serde_json = "1.0.104"
serde_json = "1.0.107"
serde-generate = { version = "0.25.1", optional = true }
serde-reflection = { version = "0.3.6", optional = true }
thiserror = "1.0.45"
thiserror = "1.0.48"
uuid = { version = "1.4.1", features = ["v4", "wasm-bindgen", "js", "serde"] }
wasm-bindgen = "0.2.87"

Expand All @@ -37,8 +37,8 @@ async-channel = "1.9"
crux_macros = { version = "0.3", path = "../crux_macros" }
crux_http = { version = "0.4", path = "../crux_http" }
crux_time = { version = "0.1", path = "../crux_time" }
serde = { version = "1.0.183", features = ["derive"] }
serde = { version = "1.0.188", features = ["derive"] }
static_assertions = "1.1"
rand = "0.8"
uuid = { version = "1.4.1", features = ["v4", "serde"] }
url = "2.4.0"
url = "2.4.1"
6 changes: 3 additions & 3 deletions crux_http/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ crux_macros = { version = "0.3", path = "../crux_macros" }
derive_builder = "0.12.0"
futures-util = "0.3"
http-types = { version = "2.12", default-features = false, features = ["fs"] }
pin-project-lite = "0.2.12"
pin-project-lite = "0.2.13"
serde = { workspace = true, features = ["derive"] }
serde_json = "1.0.104"
url = "2.4.0"
serde_json = "1.0.107"
url = "2.4.1"

[dev-dependencies]
assert_fs = "1.0.13"
Expand Down
6 changes: 3 additions & 3 deletions crux_macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ proc-macro = true
[dependencies]
darling = "0.20.3"
proc-macro-error = "1.0.4"
proc-macro2 = "1.0.66"
quote = "1.0.32"
syn = "2.0.28"
proc-macro2 = "1.0.67"
quote = "1.0.33"
syn = "2.0.37"

[dev-dependencies]
insta = "1.31"
Expand Down
Loading

0 comments on commit c3a3601

Please sign in to comment.