Skip to content

Commit f6bcfd0

Browse files
authored
Fix CLI MSRV (#4044)
Added a complete list of dependencies to test into dedicated MSRV testing crates.
1 parent 542b1db commit f6bcfd0

File tree

7 files changed

+18
-7
lines changed

7 files changed

+18
-7
lines changed

crates/externref-xform/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ description = """
1010
Internal externref transformations for wasm-bindgen
1111
"""
1212
edition = '2018'
13-
rust-version = "1.57"
13+
rust-version = "1.76"
1414

1515
[dependencies]
1616
anyhow = "1.0"

crates/msrv/cli/Cargo.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,9 @@ publish = false
66

77
[dependencies]
88
wasm-bindgen-cli = { path = "../../cli" }
9+
wasm-bindgen-cli-support = { path = "../../cli-support" }
10+
wasm-bindgen-wasm-interpreter = { path = "../../wasm-interpreter" }
11+
wasm-bindgen-threads-xform = { path = "../../threads-xform" }
12+
wasm-bindgen-multi-value-xform = { path = "../../multi-value-xform" }
13+
wasm-bindgen-externref-xform = { path = "../../externref-xform" }
14+
wasm-bindgen-wasm-conventions = { path = "../../wasm-conventions" }

crates/msrv/lib/Cargo.toml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,16 @@ edition = "2018"
55
publish = false
66

77
[dependencies]
8-
js-sys = { path = "../../js-sys" }
98
wasm-bindgen = { path = "../../../" }
9+
js-sys = { path = "../../js-sys" }
10+
web-sys = { path = "../../web-sys" }
1011
wasm-bindgen-futures = { path = "../../futures" }
1112
wasm-bindgen-test = { path = "../../test" }
12-
web-sys = { path = "../../web-sys" }
13+
wasm-bindgen-macro = { path = "../../macro" }
14+
wasm-bindgen-test-macro = { path = "../../test-macro" }
15+
wasm-bindgen-macro-support = { path = "../../macro-support" }
16+
wasm-bindgen-backend = { path = "../../backend" }
17+
wasm-bindgen-shared = { path = "../../shared" }
1318

1419
bumpalo = "=3.12.0"
1520
log = "=0.4.18"

crates/multi-value-xform/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ description = """
1010
Internal multi-value transformations for wasm-bindgen
1111
"""
1212
edition = "2018"
13-
rust-version = "1.57"
13+
rust-version = "1.76"
1414

1515
[dependencies]
1616
anyhow = "1.0"

crates/threads-xform/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ description = """
1010
Support for threading-related transformations in wasm-bindgen
1111
"""
1212
edition = "2018"
13-
rust-version = "1.57"
13+
rust-version = "1.76"
1414

1515
[dependencies]
1616
anyhow = "1.0"

crates/wasm-conventions/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ homepage = "https://rustwasm.github.io/wasm-bindgen/"
88
documentation = "https://docs.rs/wasm-bindgen-wasm-conventions"
99
description = "Utilities for working with Wasm codegen conventions (usually established by LLVM/lld)"
1010
edition = "2018"
11-
rust-version = "1.57"
11+
rust-version = "1.76"
1212

1313
[dependencies]
1414
leb128 = "0.2"

crates/wasm-interpreter/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ description = """
1010
Micro-interpreter optimized for wasm-bindgen's use case
1111
"""
1212
edition = '2018'
13-
rust-version = "1.57"
13+
rust-version = "1.76"
1414

1515
[dependencies]
1616
anyhow = "1.0"

0 commit comments

Comments
 (0)