-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (31 loc) · 906 Bytes
/
Cargo.toml
File metadata and controls
35 lines (31 loc) · 906 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "swc_plugin_gem"
version = "0.1.0"
edition = { workspace = true }
rust-version = { workspace = true }
publish = false
[lib]
crate-type = ["cdylib", "rlib"]
[profile.release]
lto = true
[dependencies]
node-resolve = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
serde_regex = { workspace = true }
swc_core = { workspace = true, features = [
"ecma_quote",
"ecma_plugin_transform",
] }
swc_ecma_visit = { workspace = true }
swc_common = { workspace = true, features = ["concurrent"] }
swc_ecma_ast = { workspace = true }
once_cell = { workspace = true }
tracing = { workspace = true }
regex = { workspace = true }
indexmap = { workspace = true, features = ["serde"] }
pathdiff = { workspace = true }
typed-path = { workspace = true }
[dev-dependencies]
swc_ecma_parser = { workspace = true }
testing = { workspace = true }