Skip to content

Commit 85d855f

Browse files
authored
chore(binding_macros): Add default-features = false (#11193)
1 parent ed63413 commit 85d855f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

crates/binding_macros/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ binding_wasm = [
3333

3434
[dependencies]
3535
# Common deps for the SWC imports
36-
swc = { optional = true, version = "43.0.0", path = "../swc" }
37-
swc_common = { optional = true, version = "15.0.0", path = "../swc_common" }
38-
swc_ecma_ast = { optional = true, version = "16.0.0", path = "../swc_ecma_ast" }
39-
swc_ecma_transforms = { optional = true, version = "36.0.0", path = "../swc_ecma_transforms" }
40-
swc_ecma_visit = { optional = true, version = "16.0.0", path = "../swc_ecma_visit" }
36+
swc = { optional = true, version = "43.0.0", path = "../swc", default-features = false }
37+
swc_common = { optional = true, version = "15.0.0", path = "../swc_common", default-features = false }
38+
swc_ecma_ast = { optional = true, version = "16.0.0", path = "../swc_ecma_ast", default-features = false }
39+
swc_ecma_transforms = { optional = true, version = "36.0.0", path = "../swc_ecma_transforms", default-features = false }
40+
swc_ecma_visit = { optional = true, version = "16.0.0", path = "../swc_ecma_visit", default-features = false }
4141

4242
# Optional deps for the wasm binding macro
4343
anyhow = { workspace = true, optional = true }

0 commit comments

Comments
 (0)