Cargo.toml 784 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. [package]
  2. name = "url"
  3. version = "0.5.1"
  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. heap_size = ["heapsize", "heapsize_plugin"]
  15. [dependencies.heapsize]
  16. version = "0.1.1"
  17. optional = true
  18. [dependencies.heapsize_plugin]
  19. version = "0.1.0"
  20. optional = true
  21. [dependencies.encoding]
  22. version = "0.2"
  23. optional = true
  24. [dependencies.serde]
  25. version = "0.6.1"
  26. optional = true
  27. [dependencies]
  28. uuid = "0.1.17"
  29. rustc-serialize = "0.3"
  30. matches = "0.1"