Cargo.toml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. [package]
  2. name = "url"
  3. # When updating version, also modify html_root_url in the lib.rs
  4. version = "2.1.1"
  5. authors = ["The rust-url developers"]
  6. description = "URL library for Rust, based on the WHATWG URL Standard"
  7. documentation = "https://docs.rs/url"
  8. repository = "https://github.com/servo/rust-url"
  9. readme = "README.md"
  10. keywords = ["url", "parser"]
  11. categories = ["parser-implementations", "web-programming", "encoding"]
  12. license = "MIT/Apache-2.0"
  13. [badges]
  14. travis-ci = { repository = "servo/rust-url" }
  15. appveyor = { repository = "Manishearth/rust-url" }
  16. [workspace]
  17. members = [".", "form_urlencoded", "idna", "percent_encoding", "data-url"]
  18. [[test]]
  19. name = "unit"
  20. [[test]]
  21. name = "data"
  22. harness = false
  23. [lib]
  24. test = false
  25. [dev-dependencies]
  26. rustc-test = "0.3"
  27. serde_json = "1.0"
  28. bencher = "0.1"
  29. [dependencies]
  30. form_urlencoded = { version = "1.0.0", path = "./form_urlencoded" }
  31. idna = { version = "0.2.0", path = "./idna" }
  32. matches = "0.1"
  33. percent-encoding = { version = "2.1.0", path = "./percent_encoding" }
  34. serde = {version = "1.0", optional = true, features = ["derive"]}
  35. [[bench]]
  36. name = "parse_url"
  37. harness = false