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."
|
2021-03-31 07:09:10 +03:00
|
|
|
documentation = "https://rustdoc.swc.rs/swc_ecma_parser/"
|
2021-12-30 12:59:18 +03:00
|
|
|
edition = "2021"
|
2020-06-02 13:53:20 +03:00
|
|
|
include = ["Cargo.toml", "src/**/*.rs", "examples/**/*.rs"]
|
2021-12-01 08:20:52 +03:00
|
|
|
license = "Apache-2.0"
|
2020-09-21 16:53:48 +03:00
|
|
|
name = "swc_ecma_parser"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2022-03-01 15:26:46 +03:00
|
|
|
version = "0.91.13"
|
2021-07-25 12:37:59 +03:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
2021-11-25 08:16:18 +03:00
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
2018-01-12 10:53:06 +03:00
|
|
|
|
2019-01-17 17:17:16 +03:00
|
|
|
[features]
|
2021-09-23 14:32:40 +03:00
|
|
|
# Used for debugging
|
|
|
|
debug = []
|
2021-07-25 12:37:59 +03:00
|
|
|
default = ["typescript"]
|
|
|
|
typescript = []
|
2021-12-13 05:39:17 +03:00
|
|
|
verify = ["swc_ecma_visit"]
|
2019-01-17 17:17:16 +03:00
|
|
|
|
2018-01-12 10:53:06 +03:00
|
|
|
[dependencies]
|
2020-09-21 16:53:48 +03:00
|
|
|
either = {version = "1.4"}
|
2021-11-10 13:00:54 +03:00
|
|
|
enum_kind = {version = "0.2.1", path = "../enum_kind"}
|
2021-06-09 17:02:13 +03:00
|
|
|
lexical = {version = "5.2.2", features = ["radix"]}
|
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"
|
2021-11-10 13:00:54 +03:00
|
|
|
swc_atoms = {version = "0.2.3", path = "../swc_atoms"}
|
2022-01-12 12:39:56 +03:00
|
|
|
swc_common = {version = "0.17.0", path = "../swc_common"}
|
2022-02-21 16:10:43 +03:00
|
|
|
swc_ecma_ast = {version = "0.68.0", path = "../swc_ecma_ast"}
|
|
|
|
swc_ecma_visit = {version = "0.54.0", path = "../swc_ecma_visit", optional = true}
|
2022-02-25 07:06:45 +03:00
|
|
|
tracing = "0.1.31"
|
2021-10-15 06:49:37 +03:00
|
|
|
typed-arena = "2.0.1"
|
2020-09-21 16:53:48 +03:00
|
|
|
unicode-xid = "0.2"
|
2018-01-12 10:53:06 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-12-29 09:27:51 +03:00
|
|
|
pretty_assertions = "0.7.2"
|
2020-09-21 16:53:48 +03:00
|
|
|
serde_json = "1"
|
2022-02-21 16:10:43 +03:00
|
|
|
swc_ecma_visit = {version = "0.54.0", path = "../swc_ecma_visit"}
|
2021-11-10 13:00:54 +03:00
|
|
|
swc_node_base = {version = "0.5.0", path = "../swc_node_base"}
|
2022-01-12 12:39:56 +03:00
|
|
|
testing = {version = "0.18.0", path = "../testing"}
|
2020-09-21 16:53:48 +03:00
|
|
|
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"
|