cookie-monster 0.0.1

A Cookie library for parsing and managing HTTP Cookies.
Documentation

cookie-monster

A Cookie library for parsing and managing HTTP Cookies.

Features

  • jiff, adds support for the jiff crate.
  • chrono, adds support for the chrono crate.
  • time, adds support for the time crate.
  • percent-encode, percent-encode/decode cookies.
  • axum, adds integrations with the axum crate.
  • http, adds integrations with the http crate.

Install

# Cargo.toml
[dependencies]
cookie-monster = "0.0.1"

# Integration with the `time` crate
cookie-monster = { version = "0.0.1", features = ["time"] }
# Integration with the`chrono` crate
cookie-monster = { version = "0.0.1", features = ["chrono"] }
# Integration with the `jiff` crate
cookie-monster = { version = "0.0.1", features = ["jiff"] }

# Adds support for percent-encoding/decoding cookies.
cookie-monster = { version = "0.0.1", features = ["percent-encoding"] }

# Integration with the `axum` crate.
cookie-monster = { version = "0.0.1", features = ["axum"] }

# Integration with the `http` crate.
cookie-monster = { version = "0.0.1", features = ["http"] }

License

This project is licensed under the MIT license.