Cargo.toml 895 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. [workspace]
  12. members = [".", "idna", "url_serde"]
  13. [[test]]
  14. name = "unit"
  15. [[test]]
  16. name = "data"
  17. harness = false
  18. [lib]
  19. test = false
  20. [dev-dependencies]
  21. rustc-test = "0.1"
  22. rustc-serialize = "0.3"
  23. serde_json = ">=0.6.1, <0.9"
  24. [features]
  25. query_encoding = ["encoding"]
  26. heap_size = ["heapsize"]
  27. [dependencies]
  28. encoding = {version = "0.2", optional = true}
  29. heapsize = {version = ">=0.1.1, <0.4", optional = true}
  30. idna = { version = "0.1.0", path = "./idna" }
  31. matches = "0.1"
  32. rustc-serialize = {version = "0.3", optional = true}
  33. serde = {version = ">=0.6.1, <0.9", optional = true}