swc/bundler/Cargo.toml
강동윤 511dc54961
Fix codegen of VisitMut for Option (#996)
swc_visit:
 - Fix codegen of VisitMut for Option
2020-08-25 16:29:11 +09:00

39 lines
1.3 KiB
TOML

[package]
name = "swc_bundler"
version = "0.5.0"
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.10.0", path = "../common" }
swc_ecma_ast = { version = "0.30.0", path = "../ecmascript/ast" }
swc_ecma_codegen = { version = "0.34.0", path = "../ecmascript/codegen" }
swc_ecma_parser = { version = "0.36.0", path = "../ecmascript/parser" }
swc_ecma_transforms = { version = "0.22.0", path = "../ecmascript/transforms" }
swc_ecma_utils = { version = "0.20.0", path = "../ecmascript/utils" }
swc_ecma_visit = { version = "0.16.0", 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.10.0", path = "../testing" }