Cargo.toml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. [package]
  2. name = "url"
  3. # When updating version, also modify html_root_url in the lib.rs
  4. version = "1.5.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. [badges]
  14. travis-ci = { repository = "servo/rust-url" }
  15. appveyor = { repository = "servo/rust-url" }
  16. [workspace]
  17. members = [".", "idna", "percent_encoding", "url_serde"]
  18. [[test]]
  19. name = "unit"
  20. [[test]]
  21. name = "data"
  22. harness = false
  23. [lib]
  24. test = false
  25. [dev-dependencies]
  26. rustc-test = "0.2"
  27. rustc-serialize = "0.3"
  28. serde_json = ">=0.6.1, <0.9"
  29. [features]
  30. query_encoding = ["encoding"]
  31. heap_size = ["heapsize"]
  32. [dependencies]
  33. encoding = {version = "0.2", optional = true}
  34. heapsize = {version = ">=0.1.1, <0.5", optional = true}
  35. idna = { version = "0.1.0", path = "./idna" }
  36. matches = "0.1"
  37. percent-encoding = { version = "1.0.0", path = "./percent_encoding" }
  38. rustc-serialize = {version = "0.3", optional = true}
  39. serde = {version = ">=0.6.1, <0.9", optional = true}