Cargo.toml 486 B

123456789101112131415161718192021222324
  1. [package]
  2. name = "data-url"
  3. version = "0.1.0"
  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. [dependencies]
  11. matches = "0.1"
  12. [dev-dependencies]
  13. rustc-test = "0.3"
  14. serde = {version = "1.0", features = ["derive"]}
  15. serde_json = "1.0"
  16. [lib]
  17. test = false
  18. [[test]]
  19. name = "wpt"
  20. harness = false