Cargo.toml 472 B

12345678910111213141516171819202122
  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. [dev-dependencies]
  12. tester = "0.9"
  13. serde = {version = "1.0", features = ["derive"]}
  14. serde_json = "1.0"
  15. [lib]
  16. test = false
  17. [[test]]
  18. name = "wpt"
  19. harness = false