Cargo.toml 596 B

12345678910111213141516171819202122232425262728
  1. [package]
  2. name = "url"
  3. version = "0.2.36"
  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. [features]
  12. query_encoding = ["encoding"]
  13. serde_serialization = ["serde"]
  14. [dependencies.encoding]
  15. version = "0.2"
  16. optional = true
  17. [dependencies.serde]
  18. version = "*"
  19. optional = true
  20. [dependencies]
  21. rustc-serialize = "0.3"
  22. matches = "0.1"