Cargo.toml 479 B

12345678910111213141516171819202122232425
  1. [package]
  2. name = "url"
  3. version = "0.2.33"
  4. authors = [ "Simon Sapin <simon.sapin@exyr.org>" ]
  5. description = "URL parser for Rust"
  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. [dependencies.encoding]
  14. version = "0.2"
  15. optional = true
  16. [dependencies]
  17. rustc-serialize = "0.3"
  18. matches = "0.1"