swc/ecmascript/ast/Cargo.toml
강동윤 dff2cb8f75
Implement deserialize for ast nodes (#274)
string_enum:
 - #[derive(StringEnum)] now derives `Deserialize`

swc_ecma_ast:
 - implement deserialize for ast nodes.
 - change ast to make it serialized / deserialized correctly

swc_ecma_parser:
 - jsx, test262, typescript tests now verify serialization and deserialization of module
2019-02-24 14:12:04 +09:00

24 lines
710 B
TOML

[package]
name = "swc_ecma_ast"
version = "0.7.0"
authors = ["강동윤 <kdy1@outlook.kr>"]
license = "Apache-2.0/MIT"
repository = "https://github.com/swc-project/swc.git"
documentation = "https://swc-project.github.io/rustdoc/swc_ecma_ast/"
description = "Ecmascript ast."
edition = "2018"
[features]
default = []
# Requires nightly.
fold = ["swc_common/fold"]
[dependencies]
serde = { version = "1.0.88", features = ["derive"] }
swc_atoms = { version = "0.1", path ="../../atoms" }
swc_common = { version = "0.2", path ="../../common" }
enum_kind = { version = "0.1", path ="../../macros/enum_kind" }
string_enum = { version = "0.1", path ="../../macros/string_enum" }
[dev-dependencies]
serde_json = "1"