Cargo.toml 415 B

123456789101112131415161718
  1. [package]
  2. name = "percent-encoding"
  3. version = "2.3.2"
  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 = []
  15. [package.metadata.docs.rs]
  16. rustdoc-args = ["--generate-link-to-definition"]