Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions crates/binding_macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ binding_wasm = [

[dependencies]
# Common deps for the SWC imports
swc = { optional = true, version = "43.0.0", path = "../swc" }
swc_common = { optional = true, version = "15.0.0", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "16.0.0", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "36.0.0", path = "../swc_ecma_transforms" }
swc_ecma_visit = { optional = true, version = "16.0.0", path = "../swc_ecma_visit" }
swc = { optional = true, version = "43.0.0", path = "../swc", default-features = false }
swc_common = { optional = true, version = "15.0.0", path = "../swc_common", default-features = false }
swc_ecma_ast = { optional = true, version = "16.0.0", path = "../swc_ecma_ast", default-features = false }
swc_ecma_transforms = { optional = true, version = "36.0.0", path = "../swc_ecma_transforms", default-features = false }
swc_ecma_visit = { optional = true, version = "16.0.0", path = "../swc_ecma_visit", default-features = false }

# Optional deps for the wasm binding macro
anyhow = { workspace = true, optional = true }
Expand Down
Loading