forked from swc-project/swc
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (24 loc) · 888 Bytes
/
Cargo.toml
File metadata and controls
28 lines (24 loc) · 888 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
[package]
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
build = "build.rs"
edition = "2021"
exclude = ["artifacts.json", "index.node"]
license = "Apache-2.0"
name = "binding_react_compiler_node"
publish = false
version = "0.2.0"
[lib]
bench = false
crate-type = ["cdylib"]
[build-dependencies]
napi-build = { workspace = true }
[dependencies]
backtrace = { workspace = true }
napi = { workspace = true, features = ["napi3", "serde-json"] }
napi-derive = { workspace = true, features = ["type-def"] }
react_compiler = { path = "../../crates/react_compiler" }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
tracing = { workspace = true, features = ["release_max_level_info"] }
swc_ecma_react_compiler = { path = "../../crates/swc_ecma_react_compiler" }
swc_malloc = { path = "../../crates/swc_malloc" }