-
-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathCargo.toml
40 lines (32 loc) · 1.17 KB
/
Cargo.toml
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
36
37
38
39
40
[package]
description = "SWC Plugin for styled-jsx"
authors = { workspace = true }
edition = { workspace = true }
homepage = { workspace = true }
license = { workspace = true }
name = "swc_plugin_styled_jsx"
publish = false
repository = { workspace = true }
rust-version = { workspace = true }
version = "0.20.4"
[lib]
crate-type = ["cdylib", "rlib"]
[features]
custom_transform = ["swc_common/concurrent"]
[dependencies]
anyhow = { workspace = true }
serde_json = { workspace = true }
styled_jsx = { path = "./transform" }
swc_atoms = { workspace = true }
swc_common = { workspace = true }
swc_core = { workspace = true, features = ["ecma_plugin_transform"] }
swc_ecma_ast = { workspace = true }
swc_ecma_minifier = { workspace = true }
swc_ecma_parser = { workspace = true }
swc_ecma_utils = { workspace = true }
swc_ecma_visit = { workspace = true }
swc_plugin_macro = { workspace = true }
tracing = { workspace = true, features = ["release_max_level_off"] }
[dev-dependencies]
swc_ecma_transforms_testing = { workspace = true }
testing = { workspace = true }