Cargo.toml 917 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. [package]
  2. name = "url"
  3. version = "1.1.1"
  4. authors = ["The rust-url developers"]
  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 = "unit"
  13. [[test]]
  14. name = "data"
  15. harness = false
  16. [lib]
  17. test = false
  18. [dev-dependencies]
  19. rustc-test = "0.1"
  20. rustc-serialize = "0.3"
  21. [features]
  22. query_encoding = ["encoding"]
  23. heap_size = ["heapsize", "heapsize_plugin"]
  24. [dependencies]
  25. idna = { version = "0.1.0", path = "./idna" }
  26. heapsize = {version = ">=0.1.1, <0.4", optional = true}
  27. heapsize_plugin = {version = "0.1.0", optional = true}
  28. encoding = {version = "0.2", optional = true}
  29. serde = {version = ">=0.6.1, <0.8", optional = true}
  30. rustc-serialize = {version = "0.3", optional = true}
  31. matches = "0.1"