swc/crates/swc_ecma_preset_env/Cargo.toml

53 lines
1.6 KiB
TOML
Raw Normal View History

2021-11-10 13:00:54 +03:00
[package]
2022-08-11 12:52:44 +03:00
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
description = "preset-env for the swc"
2021-11-10 13:00:54 +03:00
documentation = "https://rustdoc.swc.rs/swc_ecma_preset_env/"
repository = "https://github.com/swc-project/swc"
2022-08-11 12:52:44 +03:00
edition = "2021"
include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json", "data/**/*.json"]
license = "Apache-2.0"
name = "swc_ecma_preset_env"
2023-10-24 03:04:34 +03:00
version = "0.203.10"
2021-11-10 13:00:54 +03:00
[lib]
bench = false
2021-11-10 13:00:54 +03:00
[features]
default = ["serde-impl"]
serde-impl = ["serde"]
2021-11-10 13:00:54 +03:00
[dependencies]
anyhow = "1"
2023-06-22 16:37:35 +03:00
dashmap = "5.4.0"
indexmap = "1.9.3"
2023-06-22 10:40:41 +03:00
once_cell = "1.18.0"
2023-06-22 16:37:35 +03:00
semver = { version = "1.0.17", features = ["serde"] }
serde = { version = "1", features = ["derive"], optional = true }
2021-11-10 13:00:54 +03:00
serde_json = "1"
st-map = "0.2.0"
2023-10-24 03:04:34 +03:00
preset_env_base = { version = "0.4.6", path = "../preset_env_base" }
rustc-hash = "1.1.0"
2023-06-21 18:44:11 +03:00
string_enum = { version = "0.4.1", path = "../string_enum" }
2023-10-08 03:41:50 +03:00
swc_atoms = { version = "0.6.0", path = "../swc_atoms" }
2023-10-24 01:03:16 +03:00
swc_common = { version = "0.33.1", path = "../swc_common" }
swc_ecma_ast = { version = "0.110.1", path = "../swc_ecma_ast" }
2023-10-24 03:04:34 +03:00
swc_ecma_transforms = { version = "0.226.10", path = "../swc_ecma_transforms", features = [
"compat",
"proposal",
2022-08-11 12:52:44 +03:00
] }
2023-10-24 01:03:16 +03:00
swc_ecma_utils = { version = "0.124.8", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.96.1", path = "../swc_ecma_visit" }
2021-11-10 13:00:54 +03:00
[dev-dependencies]
2023-06-22 10:40:41 +03:00
criterion = "0.5"
2023-06-22 16:37:35 +03:00
pretty_assertions = "1.3"
2023-10-24 01:03:16 +03:00
swc_ecma_codegen = { version = "0.146.4", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "0.141.4", path = "../swc_ecma_parser" }
testing = { version = "0.35.1", path = "../testing" }
[[bench]]
harness = false
2022-08-11 12:52:44 +03:00
name = "polyfills"