swc/ecmascript/utils/Cargo.toml
강동윤 decac0c052
Improve performance of spack (#981)
swc_bundler:
 - Invoke `LocalMark` less time
 - Use better strategy for parallel computing
2020-08-23 17:27:56 +09:00

24 lines
792 B
TOML

[package]
name = "swc_ecma_utils"
version = "0.19.1"
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
license = "Apache-2.0/MIT"
repository = "https://github.com/swc-project/swc.git"
documentation = "https://swc-project.github.io/rustdoc/swc_ecma_utils/"
description = "Utilities for swc ecmascript ast nodes"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
swc_ecma_ast = { version = "0.29.0", path ="../ast" }
swc_atoms = { version = "0.2.0", path ="../../atoms" }
swc_common = { version = "0.9.0", path ="../../common" }
swc_ecma_visit = { version = "0.15.0", path ="../visit" }
once_cell = "1"
scoped-tls = "1"
unicode-xid = "0.2"
[dev-dependencies]
testing = { version = "0.9.0", path ="../../testing" }