forked from swc-project/plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (32 loc) · 804 Bytes
/
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
[package]
authors = ["강동윤 <[email protected]>"]
description = "SWC Plugin for styled-jsx"
edition = "2021"
license = "Apache-2.0"
name = "swc_plugin_styled_jsx"
publish = false
version = "0.14.3"
[lib]
crate-type = ["cdylib", "rlib"]
[features]
custom_transform = ["swc_core/common_concurrent"]
[dependencies]
easy-error = "1.0.0"
styled_jsx = { version = "0.29.0", path = "./transform" }
swc_core = { version = "0.44.2", features = [
"common",
"ecma_ast",
"css_ast",
"css_codegen",
"css_parser",
"css_prefixer",
"css_visit",
"ecma_parser",
"ecma_minifier",
"ecma_utils",
"ecma_visit",
] }
tracing = { version = "0.1.37", features = ["release_max_level_off"] }
[dev-dependencies]
swc_core = { features = ["testing_transform"], version = "0.44.2" }
testing = "0.31.17"