2021-05-01 12:09:10 +03:00
|
|
|
[package]
|
|
|
|
authors = ["Daniel Woznicki <daniel.woznicki@gmail.com>"]
|
2021-05-03 07:34:13 +03:00
|
|
|
description = "Visitor implementation for babel nodes"
|
2021-05-01 12:09:10 +03:00
|
|
|
edition = "2018"
|
|
|
|
license = "MIT"
|
2021-05-03 07:34:13 +03:00
|
|
|
name = "swc_babel_visit"
|
|
|
|
publish = false
|
|
|
|
version = "0.1.0"
|
2021-05-01 12:09:10 +03:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
serde = {version = "1", features = ["derive"]}
|
|
|
|
serde_json = "1.0.62"
|
|
|
|
swc_babel_ast = {path = "../babel-ast"}
|
2021-05-03 07:34:13 +03:00
|
|
|
swc_visit = {version = "0.2.3", path = "../../visit"}
|