Cargo.toml 1.1 KB

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