Skip to content

Commit

Permalink
Bump version to 0.5.0 (#195)
Browse files Browse the repository at this point in the history
* Update dependencies to latest.

This includes new WASI adapters to sync with Wasmtime 15.0.0.

* Bump version to 0.5.0.
  • Loading branch information
peterhuene authored Nov 21, 2023
1 parent 2e4b71d commit 3cc42eb
Show file tree
Hide file tree
Showing 10 changed files with 217 additions and 142 deletions.
324 changes: 198 additions & 126 deletions Cargo.lock

Large diffs are not rendered by default.

20 changes: 10 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repository = { workspace = true }
readme = "README.md"

[workspace.package]
version = "0.4.1"
version = "0.5.0"
edition = "2021"
authors = ["Peter Huene <peter@huene.dev>"]
license = "Apache-2.0 WITH LLVM-exception"
Expand Down Expand Up @@ -52,36 +52,36 @@ bytes = { workspace = true }
[dev-dependencies]
assert_cmd = "2.0.12"
predicates = "3.0.4"
wasmparser = "0.116.1"
wat = "1.0.79"
wasmparser = "0.118.0"
wat = "1.0.81"
warg-server = "0.2.0"

[workspace]
members = ["crates/bindings", "crates/macro", "crates/core", "crates/wit"]
exclude = ["target/tests"]

[workspace.dependencies]
cargo-component-core = { path = "crates/core", version = "0.4.1" }
cargo-component-macro = { path = "crates/macro", version = "0.4.1" }
cargo-component-core = { path = "crates/core", version = "0.5.0" }
cargo-component-macro = { path = "crates/macro", version = "0.5.0" }
warg-protocol = "0.2.0"
warg-crypto = "0.2.0"
warg-client = "0.2.0"
anyhow = "1.0.75"
clap = { version = "4.4.7", features = ["derive"] }
clap = { version = "4.4.8", features = ["derive"] }
toml_edit = { version = "0.21.0", features = ["serde"] }
pretty_env_logger = "0.5.0"
log = "0.4.20"
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.192", features = ["derive"] }
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
indexmap = "2.1.0"
url = { version = "2.4.1", features = ["serde"] }
wit-parser = "0.13.0"
wit-component = "0.18.0"
wasm-metadata = "0.10.11"
wit-component = "0.18.2"
wasm-metadata = "0.10.13"
parse_arg = "0.1.4"
cargo_metadata = "0.18.1"
keyring = "2.0.5"
Expand All @@ -90,7 +90,7 @@ owo-colors = "3.5.0"
unicode-width = "0.1.11"
p256 = "0.13.2"
rand_core = "0.6.4"
rpassword = "7.2.0"
rpassword = "7.3.1"
futures = "0.3.29"
bytes = "1.5.0"
proc-macro2 = "1.0.69"
Expand Down
Binary file removed adapters/2da78ca/wasi_snapshot_preview1.command.wasm
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion build.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use std::{path::Path, process::Command};

const WASI_ADAPTER_VERSION: &str = "2da78ca";
const WASI_ADAPTER_VERSION: &str = "6f0da84";

fn main() {
println!("cargo:rerun-if-changed=build.rs");
Expand Down
5 changes: 4 additions & 1 deletion crates/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,13 @@ tokio = { workspace = true }
clap = { workspace = true }

[target.'cfg(windows)'.dependencies.windows-sys]
version = "0.48"
version = "0.52"
features = [
"Win32_Foundation",
"Win32_Storage",
"Win32_Storage_FileSystem",
"Win32_System",
"Win32_System_IO",
"Win32_Security",
"Win32_System_Console",
]
4 changes: 2 additions & 2 deletions crates/wit/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "wit"
# This tool has an independent version from `cargo-component`.
version = "0.3.1"
version = "0.4.0"
description = "A tool for building and publishing WIT packages to a registry."
edition = { workspace = true }
authors = { workspace = true }
Expand Down 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.1"
wasmparser = "0.118.0"
4 changes: 2 additions & 2 deletions example/Cargo.lock

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

0 comments on commit 3cc42eb

Please sign in to comment.