Cargo.toml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. [package]
  2. name = "url"
  3. version = "0.5.8"
  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]] name = "format"
  12. [[test]] name = "form_urlencoded"
  13. [[test]] name = "idna"
  14. [[test]] name = "punycode"
  15. [[test]] name = "tests"
  16. [[test]]
  17. name = "wpt"
  18. harness = false
  19. [dev-dependencies]
  20. rustc-test = "0.1"
  21. [features]
  22. query_encoding = ["encoding"]
  23. serde_serialization = ["serde"]
  24. heap_size = ["heapsize", "heapsize_plugin"]
  25. [dependencies.heapsize]
  26. version = ">=0.1.1, <0.4"
  27. optional = true
  28. [dependencies.heapsize_plugin]
  29. version = "0.1.0"
  30. optional = true
  31. [dependencies.encoding]
  32. version = "0.2"
  33. optional = true
  34. [dependencies.serde]
  35. version = ">=0.6.1, <0.8"
  36. optional = true
  37. [dependencies]
  38. uuid = { version = "0.2", features = ["v4"] }
  39. rustc-serialize = "0.3"
  40. unicode-bidi = "0.2.3"
  41. unicode-normalization = "0.1.2"
  42. matches = "0.1"