mirror of
https://github.com/swc-project/swc.git
synced 2024-11-26 09:54:22 +03:00
49 lines
1.7 KiB
TOML
49 lines
1.7 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.15.2"
|
|
|
|
[features]
|
|
node = ["napi", "napi-derive"]
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
base64 = { workspace = true }
|
|
once_cell = { workspace = true }
|
|
pathdiff = { workspace = true }
|
|
rustc-hash = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
sourcemap = { workspace = true }
|
|
swc_allocator = { version = "0.1.7", path = "../swc_allocator", default-features = false }
|
|
|
|
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
|
|
swc_common = { version = "0.36.0", path = "../swc_common", features = [
|
|
"sourcemap",
|
|
] }
|
|
swc_config = { version = "0.1.13", path = "../swc_config" }
|
|
swc_ecma_ast = { version = "0.117.0", path = "../swc_ecma_ast" }
|
|
swc_ecma_codegen = { version = "0.154.0", path = "../swc_ecma_codegen" }
|
|
swc_ecma_minifier = { version = "0.200.0", path = "../swc_ecma_minifier" }
|
|
swc_ecma_parser = { version = "0.148.0", path = "../swc_ecma_parser" }
|
|
swc_ecma_visit = { version = "0.103.0", path = "../swc_ecma_visit" }
|
|
swc_timer = { version = "0.24.0", path = "../swc_timer" }
|
|
|
|
[dependencies.napi-derive]
|
|
default-features = false
|
|
features = ["type-def"]
|
|
optional = true
|
|
workspace = true
|
|
|
|
[dependencies.napi]
|
|
default-features = false
|
|
features = ["napi3"]
|
|
optional = true
|
|
workspace = true
|