swc/ecmascript/utils/Cargo.toml
강동윤 e448a8910c
Fix bugs (#710)
- The parser now supports parsing optional patterns in .d.ts files (Closes #709)
 - The source map is handled properly (Closes #705, Closes #707)
2020-03-09 21:18:41 +09:00

25 lines
830 B
TOML

[package]
name = "swc_ecma_utils"
version = "0.4.0"
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.18.0", path ="../ast" }
swc_atoms = { version = "0.2.0", path ="../../atoms" }
swc_common = { version = "0.5.0", path ="../../common" }
swc_ecma_parser = { version = "0.21", path ="../parser", features = ["verify"] }
anyhow = "1.0.26"
once_cell = "1"
scoped-tls = "1"
unicode-xid = "0.2"
[dev-dependencies]
testing = { version = "0.5", path ="../../testing" }