Cargo.toml 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. categories = ["parser-implementations", "web-programming", "encoding"]
  11. license = "MIT/Apache-2.0"
  12. [badges]
  13. travis-ci = { repository = "servo/rust-url" }
  14. appveyor = { repository = "servo/rust-url" }
  15. [workspace]
  16. members = [".", "idna", "url_serde"]
  17. [[test]]
  18. name = "unit"
  19. [[test]]
  20. name = "data"
  21. harness = false
  22. [lib]
  23. test = false
  24. [dev-dependencies]
  25. rustc-test = "0.1"
  26. rustc-serialize = "0.3"
  27. serde_json = ">=0.6.1, <0.9"
  28. [features]
  29. query_encoding = ["encoding"]
  30. heap_size = ["heapsize"]
  31. [dependencies]
  32. encoding = {version = "0.2", optional = true}
  33. heapsize = {version = ">=0.1.1, <0.4", optional = true}
  34. idna = { version = "0.1.0", path = "./idna" }
  35. matches = "0.1"
  36. rustc-serialize = {version = "0.3", optional = true}
  37. serde = {version = ">=0.6.1, <0.9", optional = true}