Cargo.toml 996 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. [package]
  2. name = "url"
  3. version = "1.4.0"
  4. authors = ["The rust-url developers"]
  5. description = "URL library for Rust, based on the WHATWG URL Standard"
  6. documentation = "https://docs.rs/url"
  7. repository = "https://github.com/servo/rust-url"
  8. readme = "README.md"
  9. keywords = ["url", "parser"]
  10. license = "MIT/Apache-2.0"
  11. [badges]
  12. travis-ci = { repository = "servo/rust-url" }
  13. appveyor = { repository = "servo/rust-url" }
  14. [workspace]
  15. members = [".", "idna", "url_serde"]
  16. [[test]]
  17. name = "unit"
  18. [[test]]
  19. name = "data"
  20. harness = false
  21. [lib]
  22. test = false
  23. [dev-dependencies]
  24. rustc-test = "0.1"
  25. rustc-serialize = "0.3"
  26. serde_json = ">=0.6.1, <0.9"
  27. [features]
  28. query_encoding = ["encoding"]
  29. heap_size = ["heapsize"]
  30. [dependencies]
  31. encoding = {version = "0.2", optional = true}
  32. heapsize = {version = ">=0.1.1, <0.4", optional = true}
  33. idna = { version = "0.1.0", path = "./idna" }
  34. matches = "0.1"
  35. rustc-serialize = {version = "0.3", optional = true}
  36. serde = {version = ">=0.6.1, <0.9", optional = true}