Cargo.toml 338 B

123456789101112131415
  1. [package]
  2. name = "percent-encoding"
  3. version = "2.2.0"
  4. authors = ["The rust-url developers"]
  5. description = "Percent encoding and decoding"
  6. categories = ["no_std"]
  7. repository = "https://github.com/servo/rust-url/"
  8. license = "MIT OR Apache-2.0"
  9. edition = "2018"
  10. rust-version = "1.51"
  11. [features]
  12. default = ["std"]
  13. std = ["alloc"]
  14. alloc = []