swc/native/Cargo.toml
강동윤 2fedf32747
swc_bundler (#943)
swc_bundler:
 - Splitted from spack

swc_ecma_parser:
 - Fix unexpected eof problem which occurs if log level is trace

swc_ecma_transforms:
 - Fix bugs of dce pass

spack:
 - Support cyclic dependencies
2020-08-12 22:18:47 +09:00

32 lines
734 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]
swc = { path = "../" }
swc_bundler = { path = "../bundler" }
swc_common = { path = "../common", features = ["tty-emitter", "sourcemap"] }
swc_ecma_ast = { path = "../ecmascript/ast" }
swc_ecma_parser = { path = "../ecmascript/parser" }
spack = { path = "../spack" }
backtrace = "0.3"
fxhash = "0.2"
anyhow = "1"
serde_json = "1"
neon = "0.4.0"
neon-serde = "0.4.0"
path-clean = "0.1"
serde = { version = "1", features = ["derive"] }