swc/crates/swc_ecma_transforms_module/Cargo.toml

49 lines
1.7 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 = "rust port of babel and closure compiler."
2021-11-10 13:00:54 +03:00
documentation = "https://rustdoc.swc.rs/swc_ecma_transforms_optimization/"
2022-08-11 12:52:44 +03:00
edition = "2021"
include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_ecma_transforms_module"
repository = "https://github.com/swc-project/swc.git"
2022-09-30 10:16:28 +03:00
version = "0.151.10"
[lib]
bench = false
2021-11-10 13:00:54 +03:00
[dependencies]
Inflector = "0.11.4"
ahash = "0.7.4"
anyhow = "1.0.41"
bitflags = "1"
indexmap = "1.8.0"
is-macro = "0.2.0"
path-clean = "0.1.0"
2021-11-10 13:00:54 +03:00
pathdiff = "0.2.0"
2022-08-11 12:52:44 +03:00
regex = "1"
serde = { workspace = true, features = ["derive"] }
2022-09-29 01:57:51 +03:00
swc_atoms = { version = "0.4.18", path = "../swc_atoms" }
swc_cached = { version = "0.3.14", path = "../swc_cached" }
swc_common = { version = "0.29.3", path = "../swc_common" }
swc_ecma_ast = { version = "0.94.3", path = "../swc_ecma_ast" }
swc_ecma_loader = { version = "0.41.3", path = "../swc_ecma_loader", features = [
"node",
] }
2022-09-29 01:57:51 +03:00
swc_ecma_parser = { version = "0.122.4", path = "../swc_ecma_parser" }
2022-09-30 10:16:28 +03:00
swc_ecma_transforms_base = { version = "0.111.9", path = "../swc_ecma_transforms_base" }
2022-09-29 01:57:51 +03:00
swc_ecma_utils = { version = "0.105.5", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.80.3", path = "../swc_ecma_visit" }
tracing = "0.1.32"
2021-11-10 13:00:54 +03:00
[dev-dependencies]
indexmap = { version = "1", features = ["serde"] }
serde_json = "1"
2022-09-29 01:57:51 +03:00
swc_ecma_loader = { version = "0.41.3", path = "../swc_ecma_loader", features = [
"node",
"tsc",
] }
2022-09-30 10:16:28 +03:00
swc_ecma_transforms_compat = { version = "0.134.10", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_testing = { version = "0.113.9", path = "../swc_ecma_transforms_testing" }
2022-09-29 01:57:51 +03:00
testing = { version = "0.31.3", path = "../testing/" }