Cargo.toml 468 B

1234567891011121314151617181920212223
  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. [dependencies]
  10. matches = "0.1"
  11. [dev-dependencies]
  12. rustc-test = "0.3"
  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