Crate mimeograph_crumble

Crate mimeograph_crumble 

Source
Expand description

HTTP cookie parsing and cookie jar management.

This is a copy of the cookie crate with modifications to reduce the size when compiled to WASM.

This crates provides the Cookie type, representing an HTTP cookie, and the CookieJar type, which manages a collection of cookies for session management, recording changes as they are made, and optional automatic cookie encryption and signing.

§Usage

Add the following to the [dependencies] section of your Cargo.toml:

mimeograph_crumble = "0.1.0"

Structs§

Cookie
Representation of an HTTP cookie.
CookieBuilder
Structure that follows the builder pattern for building Cookie structs.
CookieJar
A collection of cookies that tracks its modifications.
Delta
Iterator over the changes to a cookie jar.
Iter
Iterator over all of the cookies in a jar.

Enums§

ParseError
Enum corresponding to a parsing error.
SameSite
The SameSite cookie attribute.