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.
- Cookie
Builder - Structure that follows the builder pattern for building
Cookiestructs. - Cookie
Jar - 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§
- Parse
Error - Enum corresponding to a parsing error.
- Same
Site - The
SameSitecookie attribute.