swc/crates/swc_nodejs_common/Cargo.toml

24 lines
700 B
TOML
Raw Normal View History

[package]
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
description = "Common code for SWC bindings"
documentation = "https://rustdoc.swc.rs/swc_binding_utils/"
edition = "2021"
license = "Apache-2.0"
name = "swc_nodejs_common"
repository = "https://github.com/swc-project/swc.git"
2023-06-22 16:40:52 +03:00
version = "0.0.8"
[lib]
bench = false
[dependencies]
anyhow = "1"
napi = { version = "2", default-features = false, features = [
"napi3",
"serde-json",
] }
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1", features = ["unbounded_depth"] }
2023-06-22 10:40:41 +03:00
tracing = { version = "0.1.37" }
2023-06-22 16:37:35 +03:00
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }