Files
third_party_rust_rust-url/Cargo.toml
T
2016-04-17 19:37:49 +02:00

53 lines
1.0 KiB
TOML

[package]
name = "url"
version = "0.5.9"
authors = [ "Simon Sapin <simon.sapin@exyr.org>" ]
description = "URL library for Rust, based on the WHATWG URL Standard"
documentation = "http://servo.github.io/rust-url/url/index.html"
repository = "https://github.com/servo/rust-url"
readme = "README.md"
keywords = ["url", "parser"]
license = "MIT/Apache-2.0"
[[test]]
name = "format"
[[test]]
name = "form_urlencoded"
[[test]]
name = "tests"
[[test]]
name = "wpt"
harness = false
[dev-dependencies]
rustc-test = "0.1"
[features]
query_encoding = ["encoding"]
serde_serialization = ["serde"]
heap_size = ["heapsize", "heapsize_plugin"]
[dependencies.heapsize]
version = ">=0.1.1, <0.4"
optional = true
[dependencies.heapsize_plugin]
version = "0.1.0"
optional = true
[dependencies.encoding]
version = "0.2"
optional = true
[dependencies.serde]
version = ">=0.6.1, <0.8"
optional = true
[dependencies]
idna = { version = "0.1.0", path = "./idna" }
uuid = { version = "0.2", features = ["v4"] }
rustc-serialize = "0.3"
matches = "0.1"