Cargo.toml 970 B

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