forked from servo/rust-cssparser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
29 lines (23 loc) · 814 Bytes
/
Cargo.toml
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
[package]
name = "cssparser"
version = "0.5.5"
authors = [ "Simon Sapin <[email protected]>" ]
description = "Rust implementation of CSS Syntax Level 3"
documentation = "http://servo.github.io/rust-cssparser/cssparser/index.html"
repository = "https://github.com/servo/rust-cssparser"
readme = "README.md"
keywords = ["css", "syntax", "parser"]
license = "MPL-2.0"
[dev-dependencies]
rustc-serialize = "0.3"
tempdir = "0.3"
[dependencies]
encoding = "0.2"
heapsize = {version = ">=0.1.1, <0.4.0", optional = true}
heapsize_plugin = {version = "0.1.0", optional = true}
matches = "0.1"
serde = {version = ">=0.6.6, <0.8", optional = true}
serde_macros = {version = ">=0.6.5, <0.8", optional = true}
[features]
serde-serialization = [ "serde", "serde_macros" ]
heap_size = [ "heapsize", "heapsize_plugin" ]