swc/crates/swc_compiler_base/Cargo.toml
2023-10-10 04:10:33 +00:00

44 lines
1.5 KiB
TOML

[package]
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
description = "Base crate for the 'swc' crate. This is not a public API."
documentation = "https://rustdoc.swc.rs/swc_compiler_base/"
edition = "2021"
include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_compiler_base"
repository = "https://github.com/swc-project/swc.git"
version = "0.2.1"
[features]
node = ["napi", "napi-derive"]
[dependencies]
anyhow = "1.0.75"
base64 = "0.13.0"
pathdiff = "0.2.0"
serde = { version = "1.0.188", features = ["derive"] }
sourcemap = "6.2"
swc_atoms = { version = "0.6.0", path = "../swc_atoms" }
swc_common = { version = "0.33.0", path = "../swc_common", features = [
"sourcemap",
] }
swc_config = { version = "0.1.7", path = "../swc_config" }
swc_ecma_ast = { version = "0.110.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.146.0", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.188.1", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "0.141.0", path = "../swc_ecma_parser" }
swc_ecma_visit = { version = "0.96.0", path = "../swc_ecma_visit" }
swc_timer = { version = "0.21.0", path = "../swc_timer" }
[dependencies.napi-derive]
default-features = false
features = ["type-def"]
optional = true
version = "2.0.0"
[dependencies.napi]
default-features = false
features = ["napi3"]
optional = true
version = "2.0.0"