2018-01-12 10:53:06 +03:00
|
|
|
[package]
|
2022-08-11 12:52:44 +03:00
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
|
|
description = "Feature-complete es2019 parser."
|
2021-03-31 07:09:10 +03:00
|
|
|
documentation = "https://rustdoc.swc.rs/swc_ecma_parser/"
|
2022-08-11 12:52:44 +03:00
|
|
|
edition = "2021"
|
|
|
|
include = ["Cargo.toml", "src/**/*.rs", "examples/**/*.rs"]
|
|
|
|
license = "Apache-2.0"
|
|
|
|
name = "swc_ecma_parser"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2024-09-11 04:57:09 +03:00
|
|
|
version = "0.150.0"
|
2021-07-25 12:37:59 +03:00
|
|
|
|
2022-08-11 12:52:44 +03:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
2018-01-12 10:53:06 +03:00
|
|
|
|
2022-04-04 14:12:03 +03:00
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
2019-01-17 17:17:16 +03:00
|
|
|
[features]
|
2021-09-23 14:32:40 +03:00
|
|
|
# Used for debugging
|
2024-06-04 12:51:25 +03:00
|
|
|
debug = ["tracing-spans"]
|
|
|
|
default = ["typescript", "stacker"]
|
|
|
|
tracing-spans = []
|
|
|
|
typescript = []
|
|
|
|
verify = ["swc_ecma_visit"]
|
2019-01-17 17:17:16 +03:00
|
|
|
|
2018-01-12 10:53:06 +03:00
|
|
|
[dependencies]
|
2024-04-29 03:54:45 +03:00
|
|
|
either = { workspace = true }
|
|
|
|
num-bigint = { workspace = true }
|
|
|
|
num-traits = { workspace = true }
|
|
|
|
serde = { workspace = true, features = ["derive"] }
|
|
|
|
smallvec = { workspace = true }
|
|
|
|
smartstring = { workspace = true }
|
|
|
|
tracing = { workspace = true }
|
|
|
|
typed-arena = { workspace = true }
|
2023-03-24 07:46:42 +03:00
|
|
|
|
2024-04-29 03:54:45 +03:00
|
|
|
new_debug_unreachable = { workspace = true }
|
|
|
|
phf = { workspace = true, features = ["macros"] }
|
2023-12-01 23:08:13 +03:00
|
|
|
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
|
2024-09-11 04:57:09 +03:00
|
|
|
swc_common = { version = "0.38.0", path = "../swc_common" }
|
|
|
|
swc_ecma_ast = { version = "0.119.0", path = "../swc_ecma_ast" }
|
|
|
|
swc_ecma_visit = { version = "0.105.0", path = "../swc_ecma_visit", optional = true }
|
2018-01-12 10:53:06 +03:00
|
|
|
|
2023-02-08 08:14:41 +03:00
|
|
|
[target.'cfg(not(any(target_arch = "wasm32", target_arch = "arm")))'.dependencies]
|
2023-07-28 08:57:31 +03:00
|
|
|
stacker = { version = "0.1.15", optional = true }
|
2023-02-07 17:33:13 +03:00
|
|
|
|
2018-01-12 10:53:06 +03:00
|
|
|
[dev-dependencies]
|
2024-04-29 03:54:45 +03:00
|
|
|
criterion = { workspace = true }
|
|
|
|
pretty_assertions = { workspace = true }
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
walkdir = { workspace = true }
|
2019-11-06 07:14:44 +03:00
|
|
|
|
2024-07-10 09:20:27 +03:00
|
|
|
codspeed-criterion-compat = { workspace = true }
|
2024-09-11 04:57:09 +03:00
|
|
|
swc_ecma_ast = { version = "0.119.0", path = "../swc_ecma_ast", features = [
|
2023-03-27 07:28:42 +03:00
|
|
|
"serde-impl",
|
|
|
|
] }
|
2024-09-11 04:57:09 +03:00
|
|
|
swc_ecma_visit = { version = "0.105.0", path = "../swc_ecma_visit" }
|
2023-11-11 22:12:50 +03:00
|
|
|
swc_malloc = { version = "0.5.10", path = "../swc_malloc" }
|
2024-09-11 04:57:09 +03:00
|
|
|
testing = { version = "0.40.0", path = "../testing" }
|
2023-03-24 07:46:42 +03:00
|
|
|
|
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"
|
2022-04-03 18:56:29 +03:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
harness = false
|
2022-08-11 12:52:44 +03:00
|
|
|
name = "compare"
|
2022-04-03 18:56:29 +03:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
harness = false
|
2022-08-11 12:52:44 +03:00
|
|
|
name = "lexer"
|
2022-04-03 18:56:29 +03:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
harness = false
|
2022-08-11 12:52:44 +03:00
|
|
|
name = "parser"
|