2021-08-19 08:16:32 +03:00
|
|
|
[package]
|
2022-08-11 12:52:44 +03:00
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
2022-08-13 14:53:59 +03:00
|
|
|
description = "CSS parser"
|
2021-08-19 08:16:32 +03:00
|
|
|
documentation = "https://rustdoc.swc.rs/swc_css_parser/"
|
2022-08-11 12:52:44 +03:00
|
|
|
edition = "2021"
|
|
|
|
include = ["Cargo.toml", "src/**/*.rs"]
|
|
|
|
license = "Apache-2.0"
|
|
|
|
name = "swc_css_parser"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2023-05-12 03:47:49 +03:00
|
|
|
version = "0.146.9"
|
2021-08-19 08:16:32 +03:00
|
|
|
|
2022-04-04 14:12:03 +03:00
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
2021-08-19 08:16:32 +03:00
|
|
|
[features]
|
|
|
|
debug = []
|
|
|
|
|
|
|
|
[dependencies]
|
2023-04-15 06:26:56 +03:00
|
|
|
bitflags = "2.1.0"
|
2023-03-24 07:46:42 +03:00
|
|
|
lexical = "6.1.0"
|
|
|
|
serde = "1.0.127"
|
|
|
|
|
2023-05-10 07:19:21 +03:00
|
|
|
swc_atoms = { version = "0.5.5", path = "../swc_atoms" }
|
2023-05-12 03:47:49 +03:00
|
|
|
swc_common = { version = "0.31.8", path = "../swc_common" }
|
|
|
|
swc_css_ast = { version = "0.137.8", path = "../swc_css_ast" }
|
2021-08-19 08:16:32 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-03-24 07:46:42 +03:00
|
|
|
criterion = "0.3"
|
|
|
|
serde_json = "1.0.66"
|
|
|
|
|
2023-05-12 03:47:49 +03:00
|
|
|
swc_css_ast = { version = "0.137.8", path = "../swc_css_ast", features = [
|
2023-03-27 07:28:42 +03:00
|
|
|
"serde-impl",
|
|
|
|
] }
|
2023-05-12 03:47:49 +03:00
|
|
|
swc_css_visit = { version = "0.136.8", path = "../swc_css_visit" }
|
2022-10-24 06:58:37 +03:00
|
|
|
swc_node_base = { version = "0.5.8", path = "../swc_node_base" }
|
2023-05-12 03:47:49 +03:00
|
|
|
testing = { version = "0.33.9", path = "../testing" }
|
2022-06-11 17:47:08 +03:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
harness = false
|
2022-08-11 12:52:44 +03:00
|
|
|
name = "compare"
|
2022-06-11 17:47:08 +03:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
harness = false
|
2022-08-11 12:52:44 +03:00
|
|
|
name = "lexer"
|
2022-06-11 17:47:08 +03:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
harness = false
|
2022-08-11 12:52:44 +03:00
|
|
|
name = "parser"
|