Cargo.toml 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. [package]
  2. name = "url"
  3. version = "0.5.9"
  4. authors = [ "Simon Sapin <simon.sapin@exyr.org>" ]
  5. description = "URL library for Rust, based on the WHATWG URL Standard"
  6. documentation = "http://servo.github.io/rust-url/url/index.html"
  7. repository = "https://github.com/servo/rust-url"
  8. readme = "README.md"
  9. keywords = ["url", "parser"]
  10. license = "MIT/Apache-2.0"
  11. [[test]]
  12. name = "format"
  13. [[test]]
  14. name = "form_urlencoded"
  15. [[test]]
  16. name = "tests"
  17. [[test]]
  18. name = "wpt"
  19. harness = false
  20. [dev-dependencies]
  21. rustc-test = "0.1"
  22. [features]
  23. query_encoding = ["encoding"]
  24. serde_serialization = ["serde"]
  25. heap_size = ["heapsize", "heapsize_plugin"]
  26. [dependencies.heapsize]
  27. version = ">=0.1.1, <0.4"
  28. optional = true
  29. [dependencies.heapsize_plugin]
  30. version = "0.1.0"
  31. optional = true
  32. [dependencies.encoding]
  33. version = "0.2"
  34. optional = true
  35. [dependencies.serde]
  36. version = ">=0.6.1, <0.8"
  37. optional = true
  38. [dependencies]
  39. idna = { version = "0.1.0", path = "./idna" }
  40. uuid = { version = "0.2", features = ["v4"] }
  41. rustc-serialize = "0.3"
  42. matches = "0.1"