forked from servo/rust-cssparser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (31 loc) · 905 Bytes
/
Cargo.toml
File metadata and controls
39 lines (31 loc) · 905 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[package]
name = "cssparser"
version = "0.12.3"
authors = [ "Simon Sapin <simon.sapin@exyr.org>" ]
description = "Rust implementation of CSS Syntax Level 3"
documentation = "https://docs.rs/cssparser/"
repository = "https://github.com/servo/rust-cssparser"
readme = "README.md"
keywords = ["css", "syntax", "parser"]
license = "MPL-2.0"
build = "build.rs"
exclude = ["src/css-parsing-tests"]
[dev-dependencies]
rustc-serialize = "0.3"
difference = "1.0"
encoding_rs = "0.5"
[dependencies]
cssparser-macros = {path = "./macros", version = "0.2"}
heapsize = {version = "0.3", optional = true}
matches = "0.1"
phf = "0.7"
procedural-masquerade = {path = "./procedural-masquerade", version = "0.1"}
serde = {version = "0.9", optional = true}
[build-dependencies]
syn = "0.11"
quote = "0.3"
[features]
bench = []
dummy_match_byte = []
[workspace]
members = [".", "./macros", "./procedural-masquerade"]