swc/ecmascript/utils/Cargo.toml
kdy1 82e73b1121 Fix bugs (#659)
- Strip out const assertions (Closes #656)
 - Fix exclude of the file matcher (Closes #658) 
 - Automatic typescript detection (Closes #655)
2020-02-12 15:07:45 +00:00

24 lines
812 B
TOML

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