2020-01-08 04:55:22 +03:00
|
|
|
[package]
|
2023-03-08 09:49:41 +03:00
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
|
|
description = "Utilities for swc ecmascript ast nodes"
|
2021-03-31 07:09:10 +03:00
|
|
|
documentation = "https://rustdoc.swc.rs/swc_ecma_utils/"
|
2023-03-08 09:49:41 +03:00
|
|
|
edition = "2021"
|
|
|
|
license = "Apache-2.0"
|
|
|
|
name = "swc_ecma_utils"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2024-01-23 11:38:01 +03:00
|
|
|
version = "0.126.1"
|
2020-01-08 04:55:22 +03:00
|
|
|
|
2023-05-24 10:45:40 +03:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
2021-11-25 08:16:18 +03:00
|
|
|
|
2022-04-04 14:12:03 +03:00
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
2021-10-09 11:08:13 +03:00
|
|
|
[features]
|
|
|
|
# Process in parallel.
|
2022-03-16 12:58:24 +03:00
|
|
|
concurrent = ["swc_common/concurrent", "rayon"]
|
2020-01-08 04:55:22 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2023-12-03 04:12:30 +03:00
|
|
|
indexmap = "2.0.0"
|
2023-03-24 07:46:42 +03:00
|
|
|
num_cpus = "1.13.1"
|
2023-06-22 10:40:41 +03:00
|
|
|
once_cell = "1.18.0"
|
|
|
|
rayon = { version = "1.7.0", optional = true }
|
2023-03-24 07:46:42 +03:00
|
|
|
rustc-hash = "1.1.0"
|
2023-06-22 10:40:41 +03:00
|
|
|
tracing = "0.1.37"
|
2023-03-24 07:46:42 +03:00
|
|
|
unicode-id = "0.3"
|
|
|
|
|
2023-12-01 23:08:13 +03:00
|
|
|
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
|
2024-01-23 11:38:01 +03:00
|
|
|
swc_common = { version = "0.33.15", path = "../swc_common" }
|
|
|
|
swc_ecma_ast = { version = "0.111.1", path = "../swc_ecma_ast" }
|
|
|
|
swc_ecma_visit = { version = "0.97.1", path = "../swc_ecma_visit" }
|
2020-01-08 04:55:22 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-01-23 11:38:01 +03:00
|
|
|
swc_ecma_parser = { version = "0.142.1", path = "../swc_ecma_parser" }
|
|
|
|
testing = { version = "0.35.16", path = "../testing" }
|