swc/crates/swc_ecma_visit/Cargo.toml

32 lines
919 B
TOML
Raw Normal View History

2020-04-02 12:38:13 +03:00
[package]
2022-08-11 12:52:44 +03:00
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
description = "Visitors for swc ecmascript nodes which works on stable rustc"
documentation = "https://rustdoc.swc.rs/swc_ecma_visit/"
2022-08-11 12:52:44 +03:00
edition = "2021"
license = "Apache-2.0"
name = "swc_ecma_visit"
repository = "https://github.com/swc-project/swc.git"
2023-06-19 08:51:51 +03:00
version = "0.92.1"
2022-08-11 12:52:44 +03:00
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[lib]
bench = false
[features]
2022-08-11 12:52:44 +03:00
debug = []
default = []
2022-08-11 12:52:44 +03:00
path = []
2020-04-02 12:38:13 +03:00
[dependencies]
num-bigint = { version = "0.4", features = ["serde"] }
serde = { version = "1", optional = true }
tracing = "0.1.32"
2023-05-16 08:18:57 +03:00
swc_atoms = { version = "0.5.6", path = "../swc_atoms" }
2023-05-30 08:18:06 +03:00
swc_common = { version = "0.31.12", path = "../swc_common" }
2023-06-19 08:51:51 +03:00
swc_ecma_ast = { version = "0.106.2", path = "../swc_ecma_ast" }
2023-05-24 10:48:00 +03:00
swc_visit = { version = "0.5.6", path = "../swc_visit" }