Skip to content

Commit

Permalink
Update crate dependencies. (#190)
Browse files Browse the repository at this point in the history
* Update crate dependencies.

This commit updates crate dependencies to latest.

To keep compatibility with Wasmtime 14 (until the next release), the adapters
have not been updated.

Also fixes a few tests containing WIT that were missed when adding semicolons,
as they are now required by default with this update.

* Update example.
  • Loading branch information
peterhuene authored Nov 10, 2023
1 parent 00bab4a commit 047555b
Show file tree
Hide file tree
Showing 9 changed files with 328 additions and 517 deletions.
464 changes: 261 additions & 203 deletions Cargo.lock

Large diffs are not rendered by default.

34 changes: 17 additions & 17 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ bytes = { workspace = true }
[dev-dependencies]
assert_cmd = "2.0.12"
predicates = "3.0.4"
wasmparser = "0.116.0"
wat = "1.0.78"
wasmparser = "0.116.1"
wat = "1.0.79"
warg-server = "0.2.0"

[workspace]
Expand All @@ -67,34 +67,34 @@ warg-protocol = "0.2.0"
warg-crypto = "0.2.0"
warg-client = "0.2.0"
anyhow = "1.0.75"
clap = { version = "4.4.6", features = ["derive"] }
toml_edit = { version = "0.20.4", features = ["serde"] }
clap = { version = "4.4.7", features = ["derive"] }
toml_edit = { version = "0.21.0", features = ["serde"] }
pretty_env_logger = "0.5.0"
log = "0.4.20"
tokio = { version = "1.33.0", default-features = false, features = ["macros", "rt-multi-thread"] }
tokio-util = "0.7.9"
tokio = { version = "1.34.0", default-features = false, features = ["macros", "rt-multi-thread"] }
tokio-util = "0.7.10"
heck = "0.4.1"
semver = "1.0.20"
serde = { version = "1.0.189", features = ["derive"] }
serde_json = "1.0.107"
indexmap = "2.0.2"
serde = { version = "1.0.192", features = ["derive"] }
serde_json = "1.0.108"
indexmap = "2.1.0"
url = { version = "2.4.1", features = ["serde"] }
wit-parser = "0.12.2"
wit-component = "0.17.0"
wasm-metadata = "0.10.10"
wit-parser = "0.13.0"
wit-component = "0.18.0"
wasm-metadata = "0.10.11"
parse_arg = "0.1.4"
cargo_metadata = "0.18.1"
keyring = "2.0.5"
libc = "0.2.149"
libc = "0.2.150"
owo-colors = "3.5.0"
unicode-width = "0.1.11"
p256 = "0.13.2"
rand_core = "0.6.4"
rpassword = "7.2.0"
futures = "0.3.28"
futures = "0.3.29"
bytes = "1.5.0"
proc-macro2 = "1.0.69"
quote = "1.0.33"
syn = "2.0.38"
wit-bindgen-rust = "0.13.2"
wit-bindgen-core = "0.13.1"
syn = "2.0.39"
wit-bindgen-rust = "0.14.0"
wit-bindgen-core = "0.14.0"
2 changes: 1 addition & 1 deletion crates/bindings/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ repository = { workspace = true }

[dependencies]
cargo-component-macro = { workspace = true }
wit-bindgen = { version = "0.13.0", default-features = false, features = ["realloc"]}
wit-bindgen = { version = "0.14.0", default-features = false, features = ["realloc"]}
2 changes: 1 addition & 1 deletion crates/wit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ assert_cmd = "2.0.12"
predicates = "3.0.4"
warg-server = "0.2.0"
tokio-util = { workspace = true }
wasmparser = "0.116.0"
wasmparser = "0.116.1"
259 changes: 6 additions & 253 deletions example/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 047555b

Please sign in to comment.