Cargo.toml 630 B

12345678910111213141516171819202122232425262728293031
  1. [package]
  2. name = "data-url"
  3. version = "0.3.0"
  4. authors = ["Simon Sapin <simon.sapin@exyr.org>"]
  5. description = "Processing of data: URL according to WHATWG’s Fetch Standard"
  6. categories = ["no_std"]
  7. repository = "https://github.com/servo/rust-url"
  8. license = "MIT OR Apache-2.0"
  9. edition = "2018"
  10. autotests = false
  11. rust-version = "1.51"
  12. [features]
  13. default = ["std"]
  14. std = ["alloc"]
  15. alloc = []
  16. [dev-dependencies]
  17. tester = "0.9"
  18. serde = {version = "1.0", features = ["derive"]}
  19. serde_json = "1.0"
  20. [lib]
  21. test = false
  22. [[test]]
  23. name = "wpt"
  24. harness = false
  25. [package.metadata.docs.rs]
  26. rustdoc-args = ["--generate-link-to-definition"]