mirror of
https://github.com/swc-project/swc.git
synced 2024-12-26 07:02:28 +03:00
3a372ad29a
The commit will help - Better testing - Preventing regression like #785. - **Implementing spack** (It requires access to neon api because of the plugin system)
25 lines
458 B
TOML
25 lines
458 B
TOML
[package]
|
|
name = "node-swc"
|
|
version = "0.1.0"
|
|
authors = ["강동윤 <kdy1@outlook.kr>"]
|
|
license = "MIT"
|
|
build = "build.rs"
|
|
exclude = ["artifacts.json", "index.node"]
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[lib]
|
|
name = "ffi"
|
|
crate-type = ["cdylib"]
|
|
|
|
[build-dependencies]
|
|
neon-build = "0.4.0"
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
serde_json = "1"
|
|
neon = "0.4.0"
|
|
neon-serde = "0.4.0"
|
|
path-clean = "0.1"
|
|
swc = { path = "../" }
|
|
serde = { version = "1", features = ["derive"] } |