Cargo.toml 659 B

123456789101112131415161718192021222324
  1. [package]
  2. name = "form_urlencoded"
  3. version = "1.2.2"
  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.3.2", default-features = false, path = "../percent_encoding" }
  19. [package.metadata.docs.rs]
  20. rustdoc-args = ["--generate-link-to-definition"]