2018-01-12 10:53:06 +03:00
|
|
|
[package]
|
|
|
|
name = "swc_ecma_parser"
|
2018-12-26 11:09:48 +03:00
|
|
|
version = "0.6.1"
|
2018-01-12 10:53:06 +03:00
|
|
|
authors = ["강동윤 <kdy1@outlook.kr>"]
|
2018-11-18 08:00:07 +03:00
|
|
|
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."
|
2018-01-12 10:53:06 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2018-11-18 08:00:07 +03:00
|
|
|
swc_atoms = { version = "0.1", path ="../../atoms" }
|
|
|
|
swc_common = { version = "0.1", path ="../../common" }
|
2018-12-24 04:58:40 +03:00
|
|
|
swc_ecma_ast = { version = "0.4", path ="../ast" }
|
2018-11-18 08:00:07 +03:00
|
|
|
swc_ecma_parser_macros = { version = "0.1", path ="./macros" }
|
|
|
|
enum_kind = { version = "0.1", path ="../../macros/enum_kind" }
|
2018-01-12 10:53:06 +03:00
|
|
|
unicode-xid = "0.1"
|
2018-12-21 10:54:36 +03:00
|
|
|
log = { version = "0.4", features = ["release_max_level_debug"] }
|
2018-01-12 10:53:06 +03:00
|
|
|
either = { version = "1.4" }
|
2018-12-21 10:54:36 +03:00
|
|
|
smallvec = "0.6.7"
|
2018-12-30 05:57:27 +03:00
|
|
|
lazy_static = "1"
|
|
|
|
regex = "1"
|
2018-01-12 10:53:06 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2018-12-30 05:57:27 +03:00
|
|
|
testing = { version = "0.1", path ="../../testing" }
|
|
|
|
env_logger = "0.6.0"
|
|
|
|
walkdir = "2"
|