-
-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathCargo.toml
29 lines (26 loc) · 1.02 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
[package]
authors = { workspace = true }
description = "SWC plugin for https://www.npmjs.com/package/babel-plugin-transform-imports"
edition = { workspace = true }
homepage = { workspace = true }
license = { workspace = true }
name = "swc_plugin_emotion"
publish = false
repository = { workspace = true }
rust-version = { workspace = true }
version = "0.18.5"
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
serde = { workspace = true }
serde_json = { workspace = true }
swc_atoms = { workspace = true }
swc_common = { workspace = true, features = ["concurrent"] }
swc_core = { workspace = true, features = ["ecma_plugin_transform"] }
swc_ecma_ast = { workspace = true }
swc_ecma_utils = { workspace = true }
swc_ecma_visit = { workspace = true }
swc_emotion = { path = "./transform" }
swc_plugin_macro = { workspace = true }
swc_plugin_proxy = { workspace = true }
tracing = { workspace = true, features = ["release_max_level_off"] }