diff --git a/crates/externref-xform/Cargo.toml b/crates/externref-xform/Cargo.toml index 949fdf4fb88..3e1986c29f1 100644 --- a/crates/externref-xform/Cargo.toml +++ b/crates/externref-xform/Cargo.toml @@ -10,7 +10,7 @@ description = """ Internal externref transformations for wasm-bindgen """ edition = '2018' -rust-version = "1.57" +rust-version = "1.76" [dependencies] anyhow = "1.0" diff --git a/crates/msrv/cli/Cargo.toml b/crates/msrv/cli/Cargo.toml index c5fcdfcb967..407449459a7 100644 --- a/crates/msrv/cli/Cargo.toml +++ b/crates/msrv/cli/Cargo.toml @@ -6,3 +6,9 @@ publish = false [dependencies] wasm-bindgen-cli = { path = "../../cli" } +wasm-bindgen-cli-support = { path = "../../cli-support" } +wasm-bindgen-wasm-interpreter = { path = "../../wasm-interpreter" } +wasm-bindgen-threads-xform = { path = "../../threads-xform" } +wasm-bindgen-multi-value-xform = { path = "../../multi-value-xform" } +wasm-bindgen-externref-xform = { path = "../../externref-xform" } +wasm-bindgen-wasm-conventions = { path = "../../wasm-conventions" } diff --git a/crates/msrv/lib/Cargo.toml b/crates/msrv/lib/Cargo.toml index f7ac53ea6e2..6af2d333a1f 100644 --- a/crates/msrv/lib/Cargo.toml +++ b/crates/msrv/lib/Cargo.toml @@ -5,11 +5,16 @@ edition = "2018" publish = false [dependencies] -js-sys = { path = "../../js-sys" } wasm-bindgen = { path = "../../../" } +js-sys = { path = "../../js-sys" } +web-sys = { path = "../../web-sys" } wasm-bindgen-futures = { path = "../../futures" } wasm-bindgen-test = { path = "../../test" } -web-sys = { path = "../../web-sys" } +wasm-bindgen-macro = { path = "../../macro" } +wasm-bindgen-test-macro = { path = "../../test-macro" } +wasm-bindgen-macro-support = { path = "../../macro-support" } +wasm-bindgen-backend = { path = "../../backend" } +wasm-bindgen-shared = { path = "../../shared" } bumpalo = "=3.12.0" log = "=0.4.18" diff --git a/crates/multi-value-xform/Cargo.toml b/crates/multi-value-xform/Cargo.toml index 20ffe99ad72..6bbec0c8b81 100644 --- a/crates/multi-value-xform/Cargo.toml +++ b/crates/multi-value-xform/Cargo.toml @@ -10,7 +10,7 @@ description = """ Internal multi-value transformations for wasm-bindgen """ edition = "2018" -rust-version = "1.57" +rust-version = "1.76" [dependencies] anyhow = "1.0" diff --git a/crates/threads-xform/Cargo.toml b/crates/threads-xform/Cargo.toml index e714207c1ce..172c7a0c202 100644 --- a/crates/threads-xform/Cargo.toml +++ b/crates/threads-xform/Cargo.toml @@ -10,7 +10,7 @@ description = """ Support for threading-related transformations in wasm-bindgen """ edition = "2018" -rust-version = "1.57" +rust-version = "1.76" [dependencies] anyhow = "1.0" diff --git a/crates/wasm-conventions/Cargo.toml b/crates/wasm-conventions/Cargo.toml index d4178ec94b2..9c1fcfdd463 100644 --- a/crates/wasm-conventions/Cargo.toml +++ b/crates/wasm-conventions/Cargo.toml @@ -8,7 +8,7 @@ homepage = "https://rustwasm.github.io/wasm-bindgen/" documentation = "https://docs.rs/wasm-bindgen-wasm-conventions" description = "Utilities for working with Wasm codegen conventions (usually established by LLVM/lld)" edition = "2018" -rust-version = "1.57" +rust-version = "1.76" [dependencies] leb128 = "0.2" diff --git a/crates/wasm-interpreter/Cargo.toml b/crates/wasm-interpreter/Cargo.toml index 33c0c20eea9..c27c8b4cc8c 100644 --- a/crates/wasm-interpreter/Cargo.toml +++ b/crates/wasm-interpreter/Cargo.toml @@ -10,7 +10,7 @@ description = """ Micro-interpreter optimized for wasm-bindgen's use case """ edition = '2018' -rust-version = "1.57" +rust-version = "1.76" [dependencies] anyhow = "1.0"