2018-01-12 10:53:06 +03:00
|
|
|
[package]
|
2019-10-25 04:11:24 +03:00
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
2018-11-18 08:00:07 +03:00
|
|
|
description = "Feature-complete es2019 parser."
|
2020-09-21 16:53:48 +03:00
|
|
|
documentation = "https://swc.rs/rustdoc/swc_ecma_parser/"
|
2019-11-17 07:21:53 +03:00
|
|
|
edition = "2018"
|
2020-06-02 13:53:20 +03:00
|
|
|
include = ["Cargo.toml", "src/**/*.rs", "examples/**/*.rs"]
|
2020-09-21 16:53:48 +03:00
|
|
|
license = "Apache-2.0/MIT"
|
|
|
|
name = "swc_ecma_parser"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2020-12-21 22:27:18 +03:00
|
|
|
version = "0.44.0"
|
2018-01-12 10:53:06 +03:00
|
|
|
|
2019-01-17 17:17:16 +03:00
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
|
2018-01-12 10:53:06 +03:00
|
|
|
[dependencies]
|
2020-09-21 16:53:48 +03:00
|
|
|
either = {version = "1.4"}
|
|
|
|
enum_kind = {version = "0.2", path = "../../macros/enum_kind"}
|
|
|
|
fxhash = "0.2.1"
|
2020-02-13 05:45:14 +03:00
|
|
|
log = "0.4"
|
2019-12-22 11:14:04 +03:00
|
|
|
num-bigint = "0.2"
|
2020-09-21 16:53:48 +03:00
|
|
|
serde = {version = "1", features = ["derive"]}
|
|
|
|
smallvec = "1"
|
2020-09-23 08:27:27 +03:00
|
|
|
swc_atoms = {version = "0.2.3", path = "../../atoms"}
|
2020-09-21 16:53:48 +03:00
|
|
|
swc_common = {version = "0.10.0", path = "../../common"}
|
2020-12-21 22:27:18 +03:00
|
|
|
swc_ecma_ast = {version = "0.36.0", path = "../ast"}
|
2020-09-21 16:53:48 +03:00
|
|
|
swc_ecma_parser_macros = {version = "0.4.1", path = "./macros"}
|
2020-12-21 22:27:18 +03:00
|
|
|
swc_ecma_visit = {version = "0.22.0", path = "../visit"}
|
2020-09-21 16:53:48 +03:00
|
|
|
unicode-xid = "0.2"
|
2018-01-12 10:53:06 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-11-24 08:17:27 +03:00
|
|
|
env_logger = "0.7"
|
2019-11-06 07:14:44 +03:00
|
|
|
pretty_assertions = "0.6"
|
2020-09-21 16:53:48 +03:00
|
|
|
serde_json = "1"
|
|
|
|
testing = {version = "0.10.0", path = "../../testing"}
|
|
|
|
walkdir = "2"
|
2019-11-06 07:14:44 +03:00
|
|
|
|
|
|
|
[[example]]
|
2019-12-13 02:35:32 +03:00
|
|
|
name = "lexer"
|
|
|
|
|
|
|
|
[[example]]
|
2020-02-05 14:20:25 +03:00
|
|
|
name = "typescript"
|