Cargo.toml 656 B

1234567891011121314151617181920212223242526272829303132
  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. unicode-width = "=0.1.12"
  19. serde = {version = "1.0", features = ["derive"]}
  20. serde_json = "1.0"
  21. [lib]
  22. test = false
  23. [[test]]
  24. name = "wpt"
  25. harness = false
  26. [package.metadata.docs.rs]
  27. rustdoc-args = ["--generate-link-to-definition"]