-
-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathCargo.toml
31 lines (27 loc) · 1009 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
[package]
authors = { workspace = true }
description = "SWC plugin for relay.dev"
edition = { workspace = true }
homepage = { workspace = true }
license = { workspace = true }
name = "swc_plugin_relay"
publish = false
repository = { workspace = true }
rust-version = { workspace = true }
version = "0.7.4"
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
once_cell = { workspace = true }
regex = { workspace = true }
serde = { workspace = true }
serde_json = { 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_plugin_macro = { workspace = true }
swc_relay = { path = "./transform" }
tracing = { workspace = true, features = ["release_max_level_off"] }
[dev-dependencies]