2020-01-08 04:55:22 +03:00
|
|
|
[package]
|
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
2020-01-17 12:54:40 +03:00
|
|
|
description = "Utilities for swc ecmascript ast nodes"
|
2021-03-31 07:09:10 +03:00
|
|
|
documentation = "https://rustdoc.swc.rs/swc_ecma_utils/"
|
2020-01-08 04:55:22 +03:00
|
|
|
edition = "2018"
|
2020-09-21 16:53:48 +03:00
|
|
|
license = "Apache-2.0/MIT"
|
|
|
|
name = "swc_ecma_utils"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2021-09-09 14:45:20 +03:00
|
|
|
version = "0.44.2"
|
2020-01-08 04:55:22 +03:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2020-01-30 17:29:12 +03:00
|
|
|
once_cell = "1"
|
2020-01-08 04:55:22 +03:00
|
|
|
scoped-tls = "1"
|
2020-09-21 16:53:48 +03:00
|
|
|
swc_atoms = {version = "0.2.0", path = "../../atoms"}
|
2021-09-03 07:55:31 +03:00
|
|
|
swc_common = {version = "0.12.0", path = "../../common"}
|
|
|
|
swc_ecma_ast = {version = "0.52.0", path = "../ast"}
|
2021-09-09 14:45:20 +03:00
|
|
|
swc_ecma_visit = {version = "0.38.1", path = "../visit"}
|
2020-01-08 04:55:22 +03:00
|
|
|
unicode-xid = "0.2"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-09-03 07:55:31 +03:00
|
|
|
testing = {version = "0.13.0", path = "../../testing"}
|