swc/ecmascript/parser/Cargo.toml
강동윤 1315d58059
Fix bugs (#949)
swc_ecma_parser:
 - Allow `in` in class properties (#944)
 - Make `delete` with optional chaining valid (#947)

swc_ecma_transforms:
 - Add a `typescript_class_properties` pass (#930)
2020-08-09 16:45:00 +09:00

43 lines
1.1 KiB
TOML

[package]
name = "swc_ecma_parser"
version = "0.33.2"
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
license = "Apache-2.0/MIT"
repository = "https://github.com/swc-project/swc.git"
documentation = "https://swc-project.github.io/rustdoc/swc_ecma_parser/"
description = "Feature-complete es2019 parser."
edition = "2018"
include = ["Cargo.toml", "src/**/*.rs", "examples/**/*.rs"]
[features]
default = []
[dependencies]
swc_atoms = { version = "0.2", path ="../../atoms" }
swc_common = { version = "0.9.0", path ="../../common" }
swc_ecma_ast = { version = "0.28.0", path ="../ast" }
swc_ecma_parser_macros = { version = "0.4.1", path ="./macros" }
swc_ecma_visit = { version = "0.13.0", path ="../visit" }
enum_kind = { version = "0.2", path ="../../macros/enum_kind" }
unicode-xid = "0.2"
log = "0.4"
either = { version = "1.4" }
serde = { version = "1", features = ["derive"] }
smallvec = "1"
num-bigint = "0.2"
fxhash = "0.2.1"
[dev-dependencies]
testing = { version = "0.9.0", path ="../../testing" }
env_logger = "0.7"
walkdir = "2"
serde_json = "1"
pretty_assertions = "0.6"
[[example]]
name = "lexer"
[[example]]
name = "typescript"