mirror of
https://github.com/swc-project/swc.git
synced 2024-12-11 07:35:15 +03:00
39 lines
1.3 KiB
TOML
39 lines
1.3 KiB
TOML
[package]
|
|
name = "swc_bundler"
|
|
version = "0.2.2"
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
license = "Apache-2.0/MIT"
|
|
repository = "https://github.com/swc-project/swc.git"
|
|
documentation = "https://swc-project.github.io/rustdoc/swc_bundler/"
|
|
description = "Very fast ecmascript bundler"
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[features]
|
|
default = []
|
|
concurrent = ["swc_common/concurrent", "dashmap", "rayon"]
|
|
|
|
|
|
[dependencies]
|
|
swc_atoms = { version = "0.2", path = "../atoms" }
|
|
swc_common = { version = "0.9", path = "../common" }
|
|
swc_ecma_ast = { version = "0.28", path = "../ecmascript/ast" }
|
|
swc_ecma_codegen = { version = "0.31", path = "../ecmascript/codegen" }
|
|
swc_ecma_parser = { version = "0.33", path = "../ecmascript/parser" }
|
|
swc_ecma_transforms = { version = "0.19", path = "../ecmascript/transforms" }
|
|
swc_ecma_utils = { version = "0.17", path = "../ecmascript/utils" }
|
|
swc_ecma_visit = { version = "0.13", path = "../ecmascript/visit" }
|
|
anyhow = "1"
|
|
crc = "1.8"
|
|
radix_fmt = "1"
|
|
relative-path = "1.2"
|
|
log = "0.4"
|
|
petgraph = "0.5"
|
|
once_cell = "1"
|
|
dashmap = { version = "3", optional = true }
|
|
rayon = { version = "1", optional = true }
|
|
is-macro = "0.1"
|
|
|
|
[dev-dependencies]
|
|
testing = { version = "0.9.0", path = "../testing" }
|