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"
|
2021-03-31 07:09:10 +03:00
|
|
|
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"
|
2024-11-01 10:35:29 +03:00
|
|
|
version = "3.0.0"
|
2021-12-06 14:08:50 +03:00
|
|
|
|
2022-08-11 12:52:44 +03:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
2022-07-05 07:38:27 +03:00
|
|
|
|
2022-04-04 14:12:03 +03:00
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
2021-12-06 14:08:50 +03:00
|
|
|
[features]
|
2022-08-11 12:52:44 +03:00
|
|
|
debug = []
|
2022-07-23 16:54:39 +03:00
|
|
|
default = []
|
2022-08-11 12:52:44 +03:00
|
|
|
path = []
|
2020-04-02 12:38:13 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2024-07-11 19:16:05 +03:00
|
|
|
new_debug_unreachable = { workspace = true }
|
|
|
|
num-bigint = { workspace = true, features = ["serde"] }
|
|
|
|
serde = { workspace = true, optional = true }
|
|
|
|
tracing = { workspace = true }
|
2023-03-24 07:46:42 +03:00
|
|
|
|
2024-10-12 10:20:07 +03:00
|
|
|
swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
|
2024-11-01 10:35:29 +03:00
|
|
|
swc_common = { version = "3.0.0", path = "../swc_common" }
|
|
|
|
swc_ecma_ast = { version = "3.0.0", path = "../swc_ecma_ast" }
|
2024-10-29 05:30:46 +03:00
|
|
|
swc_visit = { version = "2.0.0", path = "../swc_visit" }
|