Cargo.toml 508 B

12345678910111213141516171819202122232425
  1. [package]
  2. name = "data-url"
  3. version = "0.1.1"
  4. authors = ["Simon Sapin <simon.sapin@exyr.org>"]
  5. description = "Processing of data: URL according to WHATWG’s Fetch Standard"
  6. repository = "https://github.com/servo/rust-url"
  7. license = "MIT OR Apache-2.0"
  8. edition = "2018"
  9. autotests = false
  10. rust-version = "1.45"
  11. [dependencies]
  12. matches = "0.1"
  13. [dev-dependencies]
  14. rustc-test = "0.3"
  15. serde = {version = "1.0", features = ["derive"]}
  16. serde_json = "1.0"
  17. [lib]
  18. test = false
  19. [[test]]
  20. name = "wpt"
  21. harness = false