2019-12-28 05:25:54 +03:00
|
|
|
[package]
|
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
2021-01-01 07:38:44 +03:00
|
|
|
description = "preset-env for the swc"
|
2021-01-01 07:30:35 +03:00
|
|
|
documentation = "https://swc.rs/rustdoc/swc_ecma_preset_env/"
|
2019-12-28 05:25:54 +03:00
|
|
|
edition = "2018"
|
2021-01-01 07:30:35 +03:00
|
|
|
license = "Apache-2.0/MIT"
|
2020-09-21 16:53:48 +03:00
|
|
|
name = "swc_ecma_preset_env"
|
2021-03-30 10:47:12 +03:00
|
|
|
version = "0.13.0"
|
2019-12-28 05:25:54 +03:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2020-09-21 16:53:48 +03:00
|
|
|
dashmap = "3"
|
|
|
|
fxhash = "0.2.1"
|
2019-12-28 05:25:54 +03:00
|
|
|
once_cell = "1.2.0"
|
2020-09-21 16:53:48 +03:00
|
|
|
semver = {version = "0.9.0", features = ["serde"]}
|
|
|
|
serde = {version = "1", features = ["derive"]}
|
|
|
|
serde_json = "1"
|
2019-12-28 05:25:54 +03:00
|
|
|
st-map = "0.1.2"
|
2021-02-20 09:18:09 +03:00
|
|
|
string_enum = {version = "0.3.1", path = "../../macros/string_enum"}
|
2021-01-01 07:30:35 +03:00
|
|
|
swc_atoms = {version = "0.2", path = "../../atoms"}
|
2021-02-20 09:18:09 +03:00
|
|
|
swc_common = {version = "0.10.10", path = "../../common"}
|
2021-03-30 10:47:12 +03:00
|
|
|
swc_ecma_ast = {version = "0.42.0", path = "../ast"}
|
|
|
|
swc_ecma_transforms = {version = "0.43.0", path = "../transforms", features = ["compat", "proposal"]}
|
|
|
|
swc_ecma_utils = {version = "0.33.0", path = "../utils"}
|
|
|
|
swc_ecma_visit = {version = "0.28.0", path = "../visit"}
|
2020-09-21 16:53:48 +03:00
|
|
|
walkdir = "2"
|
2019-12-28 05:25:54 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
pretty_assertions = "0.6"
|
2021-03-30 10:47:12 +03:00
|
|
|
swc_ecma_codegen = {version = "0.50.0", path = "../codegen"}
|
|
|
|
swc_ecma_parser = {version = "0.52.0", path = "../parser"}
|
2021-02-20 09:18:09 +03:00
|
|
|
testing = {version = "0.10.3", path = "../../testing"}
|