swc/crates/swc_css_parser/Cargo.toml

48 lines
1.1 KiB
TOML
Raw Normal View History

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-12-23 06:41:17 +03:00
version = "0.150.21"
2021-08-19 08:16:32 +03:00
[lib]
bench = false
2021-08-19 08:16:32 +03:00
[features]
debug = []
[dependencies]
lexical = "6.1.0"
serde = "1.0.127"
2023-12-01 23:08:13 +03:00
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
2023-12-08 10:18:16 +03:00
swc_common = { version = "0.33.12", path = "../swc_common" }
swc_css_ast = { version = "0.140.13", path = "../swc_css_ast" }
2021-08-19 08:16:32 +03:00
[dev-dependencies]
2023-06-22 10:40:41 +03:00
criterion = "0.5"
serde_json = "1.0.66"
2023-12-08 10:18:16 +03:00
swc_css_ast = { version = "0.140.13", path = "../swc_css_ast", features = [
"serde-impl",
] }
2023-12-08 10:18:16 +03:00
swc_css_visit = { version = "0.139.13", path = "../swc_css_visit" }
2023-11-11 22:12:50 +03:00
swc_malloc = { version = "0.5.10", path = "../swc_malloc" }
2023-12-08 10:18:16 +03:00
testing = { version = "0.35.14", path = "../testing" }
[[bench]]
harness = false
2022-08-11 12:52:44 +03:00
name = "compare"
[[bench]]
harness = false
2022-08-11 12:52:44 +03:00
name = "lexer"
[[bench]]
harness = false
2022-08-11 12:52:44 +03:00
name = "parser"