Cargo.toml 763 B

123456789101112131415161718192021222324252627282930313233
  1. [package]
  2. name = "data-url"
  3. version = "0.3.1"
  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. # We pin this transitive dev dep so that MSRV CI can continue to run.
  19. unicode-width = "=0.1.12"
  20. serde = { version = "1.0", default-features = false, features = ["alloc", "derive"] }
  21. serde_json = "1.0"
  22. [lib]
  23. test = false
  24. [[test]]
  25. name = "wpt"
  26. harness = false
  27. [package.metadata.docs.rs]
  28. rustdoc-args = ["--generate-link-to-definition"]