@@ -4,21 +4,32 @@ name = "msrv-library-test"
4
4
publish = false
5
5
version = " 0.0.0"
6
6
7
+ [features ]
8
+ default = [" std" ]
9
+ std = [
10
+ " wasm-bindgen-backend/std" ,
11
+ " wasm-bindgen-macro-support/std" ,
12
+ " wasm-bindgen-macro/std" ,
13
+ " wasm-bindgen/std" ,
14
+ " js-sys/std" ,
15
+ " wasm-bindgen-futures/std" ,
16
+ " web-sys/std" ,
17
+ " wasm-bindgen-test/std" ,
18
+ ]
19
+
7
20
[dependencies ]
8
- js-sys = { path = " ../../js-sys" }
9
- wasm-bindgen = { path = " ../../../" }
10
- wasm-bindgen-backend = { path = " ../../backend" }
11
- wasm-bindgen-futures = { path = " ../../futures" }
12
- wasm-bindgen-macro = { path = " ../../macro" }
13
- wasm-bindgen-macro-support = { path = " ../../macro-support" }
21
+ js-sys = { path = " ../../js-sys" , default-features = false }
22
+ wasm-bindgen = { path = " ../../../" , default-features = false }
23
+ wasm-bindgen-backend = { path = " ../../backend" , default-features = false }
24
+ wasm-bindgen-futures = { path = " ../../futures" , default-features = false }
25
+ wasm-bindgen-macro = { path = " ../../macro" , default-features = false }
26
+ wasm-bindgen-macro-support = { path = " ../../macro-support" , default-features = false }
14
27
wasm-bindgen-shared = { path = " ../../shared" }
15
- wasm-bindgen-test = { path = " ../../test" }
28
+ wasm-bindgen-test = { path = " ../../test" , default-features = false }
16
29
wasm-bindgen-test-macro = { path = " ../../test-macro" }
17
- web-sys = { path = " ../../web-sys" }
30
+ web-sys = { path = " ../../web-sys" , default-features = false }
18
31
32
+ # Pinned sub-dependencies for MSRV
19
33
bumpalo = " =3.12.0"
20
34
log = " =0.4.18"
21
- scoped-tls = " =1.0.0"
22
-
23
- [patch .crates-io ]
24
- wasm-bindgen = { path = " ../../../" }
35
+ scoped-tls = { version = " =1.0.0" , optional = false }
0 commit comments