set-cookie-parser 0.1.1

Parse Set-Cookie response headers into structured cookies, and split a comma-joined Set-Cookie header without choking on commas in Expires dates. A faithful port of the set-cookie-parser npm package. Zero dependencies, no_std.
Documentation
# Changelog

All notable changes to this project are documented here. The format is based on
[Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.1.0] - 2026-06-22

### Added

- Initial release.
- `parse` / `parse_with` — parse a single `Set-Cookie` value into a `Cookie`.
- `split_cookies_string` — split a comma-joined `Set-Cookie` header without splitting
  on commas inside `Expires` dates.
- `parse_all` / `parse_all_with` — split then parse each cookie.
- `Cookie` with name, value, expires, max_age, domain, path, secure, http_only,
  same_site, partitioned, and other attributes.
- Faithful to the `set-cookie-parser` npm package, including `decodeURIComponent`
  value decoding and the prototype-pollution guard. Zero dependencies; `#![no_std]`.

[0.1.0]: https://github.com/trananhtung/set-cookie-parser/releases/tag/v0.1.0