Cargo.toml 582 B

123456789101112131415161718192021
  1. [package]
  2. name = "form_urlencoded"
  3. version = "1.1.0"
  4. authors = ["The rust-url developers"]
  5. description = "Parser and serializer for the application/x-www-form-urlencoded syntax, as used by HTML forms."
  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. [lib]
  12. test = false
  13. [features]
  14. default = ["std"]
  15. std = ["alloc", "percent-encoding/std"]
  16. alloc = ["percent-encoding/alloc"]
  17. [dependencies]
  18. percent-encoding = { version = "2.2.0", default-features = false, path = "../percent_encoding" }