blob: e3846595b38fa250e9986f370ebefd95f47c52a9 [file] [log] [blame]
Jeff Vander Stoep2a876fb2020-12-17 19:57:45 +01001[package]
2
3name = "url"
4# When updating version, also modify html_root_url in the lib.rs
Jeff Vander Stoepff880822021-05-07 16:28:07 +02005version = "2.2.2"
Jeff Vander Stoep2a876fb2020-12-17 19:57:45 +01006authors = ["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"
Haibo Huang619a7d32021-02-18 17:01:06 -080015include = ["src/**/*", "LICENSE-*", "README.md", "tests/**"]
Jeff Vander Stoep2a876fb2020-12-17 19:57:45 +010016edition = "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