swc/ecmascript/utils/Cargo.toml
강동윤 511dc54961
Fix codegen of VisitMut for Option (#996)
swc_visit:
 - Fix codegen of VisitMut for Option
2020-08-25 16:29:11 +09:00

24 lines
794 B
TOML

[package]
name = "swc_ecma_utils"
version = "0.20.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.30.0", path ="../ast" }
swc_atoms = { version = "0.2.0", path ="../../atoms" }
swc_common = { version = "0.10.0", path ="../../common" }
swc_ecma_visit = { version = "0.16.0", path ="../visit" }
once_cell = "1"
scoped-tls = "1"
unicode-xid = "0.2"
[dev-dependencies]
testing = { version = "0.10.0", path ="../../testing" }