Cargo.toml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. [package]
  2. name = "url"
  3. # When updating version, also modify html_root_url in the lib.rs
  4. version = "2.2.2"
  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 OR Apache-2.0"
  13. include = ["src/**/*", "LICENSE-*", "README.md", "tests/**"]
  14. edition = "2018"
  15. rust-version = "1.51"
  16. [badges]
  17. travis-ci = { repository = "servo/rust-url" }
  18. appveyor = { repository = "Manishearth/rust-url" }
  19. [dev-dependencies]
  20. serde_json = "1.0"
  21. bencher = "0.1"
  22. [dependencies]
  23. form_urlencoded = { version = "1.0.0", path = "../form_urlencoded" }
  24. idna = { version = "0.2.0", path = "../idna", optional = true }
  25. percent-encoding = { version = "2.1.0", path = "../percent_encoding" }
  26. serde = {version = "1.0", optional = true, features = ["derive"]}
  27. [features]
  28. default = ["idna"]
  29. [[bench]]
  30. name = "parse_url"
  31. path = "benches/parse_url.rs"
  32. harness = false