mirror of
https://github.com/swc-project/swc.git
synced 2024-11-25 22:34:04 +03:00
b48bdee4df
Some checks are pending
CI / Cargo fmt (push) Waiting to run
CI / Cargo clippy (push) Waiting to run
CI / Check license of dependencies (push) Waiting to run
CI / Check (macos-latest) (push) Waiting to run
CI / Check (ubuntu-latest) (push) Waiting to run
CI / Check (windows-latest) (push) Waiting to run
CI / Test wasm (binding_core_wasm) (push) Waiting to run
CI / Test wasm (binding_minifier_wasm) (push) Waiting to run
CI / Test wasm (binding_typescript_wasm) (push) Waiting to run
CI / List crates (push) Waiting to run
CI / Test - ${{ matrix.settings.crate }} - ${{ matrix.settings.os }} (push) Blocked by required conditions
CI / Test node bindings - ${{ matrix.os }} (macos-latest) (push) Waiting to run
CI / Test node bindings - ${{ matrix.os }} (windows-latest) (push) Waiting to run
CI / Test with @swc/cli (push) Waiting to run
CI / Miri (better_scoped_tls) (push) Waiting to run
CI / Miri (string_enum) (push) Waiting to run
CI / Miri (swc) (push) Waiting to run
CI / Miri (swc_bundler) (push) Waiting to run
CI / Done (push) Blocked by required conditions
Benchmark / Bench everything (push) Waiting to run
Publish crates (auto) / Publish cargo crates (push) Waiting to run
53 lines
1.8 KiB
TOML
53 lines
1.8 KiB
TOML
[package]
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
build = "build.rs"
|
|
description = "Speedy web compiler"
|
|
documentation = "https://rustdoc.swc.rs/swc/"
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
name = "swc_node_bundler"
|
|
repository = "https://github.com/swc-project/swc.git"
|
|
version = "4.0.0"
|
|
|
|
[lib]
|
|
bench = false
|
|
|
|
[features]
|
|
default = ["swc_v1"]
|
|
serde-impl = ["serde"]
|
|
swc_v1 = ["serde-impl"]
|
|
swc_v2 = ["serde-impl"]
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
dashmap = { workspace = true }
|
|
is-macro = { workspace = true }
|
|
once_cell = { workspace = true }
|
|
regex = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"], optional = true }
|
|
serde_json = { workspace = true }
|
|
tracing = { workspace = true }
|
|
|
|
string_enum = { version = "1.0.0", path = "../string_enum" }
|
|
swc = { version = "4.0.0", path = "../swc" }
|
|
swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
|
|
swc_bundler = { version = "4.0.0", path = "../swc_bundler", features = [
|
|
"concurrent",
|
|
] }
|
|
swc_common = { version = "3.0.0", path = "../swc_common", features = [
|
|
"concurrent",
|
|
] }
|
|
swc_ecma_ast = { version = "3.0.0", path = "../swc_ecma_ast" }
|
|
swc_ecma_codegen = { version = "3.0.0", path = "../swc_ecma_codegen" }
|
|
swc_ecma_loader = { version = "3.0.0", path = "../swc_ecma_loader" }
|
|
swc_ecma_parser = { version = "4.0.0", path = "../swc_ecma_parser" }
|
|
swc_ecma_transforms = { version = "4.0.0", path = "../swc_ecma_transforms" }
|
|
swc_ecma_utils = { version = "4.0.0", path = "../swc_ecma_utils" }
|
|
swc_ecma_visit = { version = "3.0.0", path = "../swc_ecma_visit" }
|
|
swc_malloc = { version = "1.0.0", path = "../swc_malloc" }
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = { workspace = true }
|
|
|
|
testing = { version = "3.0.0", path = "../testing" }
|