1[package]
2
3name = "url"
4# When updating version, also modify html_root_url in the lib.rs
5version = "2.2.0"
6authors = ["The rust-url developers"]
7
8description = "URL library for Rust, based on the WHATWG URL Standard"
9documentation = "https://docs.rs/url"
10repository = "https://github.com/servo/rust-url"
11readme = "../README.md"
12keywords = ["url", "parser"]
13categories = ["parser-implementations", "web-programming", "encoding"]
14license = "MIT/Apache-2.0"
15include = ["src/**/*", "LICENSE-*", "README.md"]
16edition = "2018"
17
18[badges]
19travis-ci = { repository = "servo/rust-url" }
20appveyor = { repository = "Manishearth/rust-url" }
21
22[dev-dependencies]
23serde_json = "1.0"
24bencher = "0.1"
25
26[dependencies]
27form_urlencoded = { version = "1.0.0", path = "../form_urlencoded" }
28idna = { version = "0.2.0", path = "../idna" }
29matches = "0.1"
30percent-encoding = { version = "2.1.0", path = "../percent_encoding" }
31serde = {version = "1.0", optional = true, features = ["derive"]}
32
33[[bench]]
34name = "parse_url"
35path = "benches/parse_url.rs"
36harness = false
37