2019-12-28 05:25:54 +03:00
|
|
|
[package]
|
|
|
|
name = "swc_ecma_preset_env"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
swc_atoms = { path = "../../atoms" }
|
|
|
|
swc_common = { path = "../../common" }
|
|
|
|
swc_ecma_ast = { path = "../ast" }
|
|
|
|
swc_ecma_transforms = { path = "../transforms" }
|
2020-07-23 20:18:22 +03:00
|
|
|
swc_ecma_visit = { path = "../visit" }
|
2019-12-28 05:25:54 +03:00
|
|
|
string_enum = { path = "../../macros/string_enum" }
|
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
serde_json = "1"
|
|
|
|
walkdir = "2"
|
|
|
|
semver = { version = "0.9.0", features = ["serde"] }
|
|
|
|
once_cell = "1.2.0"
|
|
|
|
st-map = "0.1.2"
|
|
|
|
fxhash = "0.2.1"
|
2020-08-12 16:18:47 +03:00
|
|
|
dashmap = "3"
|
2019-12-28 05:25:54 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
swc_ecma_codegen = { path = "../codegen" }
|
2020-07-23 20:18:22 +03:00
|
|
|
swc_ecma_parser = { path = "../parser" }
|
2019-12-28 05:25:54 +03:00
|
|
|
testing = { path = "../../testing" }
|
|
|
|
pretty_assertions = "0.6"
|