mirror of
https://github.com/swc-project/swc.git
synced 2024-11-23 17:54:15 +03:00
24 lines
700 B
TOML
24 lines
700 B
TOML
[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"
|
|
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"] }
|
|
tracing = { version = "0.1.37" }
|
|
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
|