Cargo.toml 451 B

12345678910111213141516171819202122
  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. [dependencies]
  9. matches = "0.1"
  10. [dev-dependencies]
  11. rustc-test = "0.3"
  12. serde = {version = "1.0", features = ["derive"]}
  13. serde_json = "1.0"
  14. [lib]
  15. test = false
  16. [[test]]
  17. name = "wpt"
  18. harness = false