[package]
name = "set-cookie-parser"
version = "0.1.0"
edition = "2021"
rust-version = "1.74"
description = "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 = "https://docs.rs/set-cookie-parser"
repository = "https://github.com/trananhtung/set-cookie-parser"
homepage = "https://github.com/trananhtung/set-cookie-parser"
readme = "README.md"
license = "MIT OR Apache-2.0"
keywords = ["cookie", "set-cookie", "http", "header", "parser"]
categories = ["parser-implementations", "web-programming", "no-std"]
authors = ["trananhtung"]
exclude = ["/.github", "/.gitignore"]
[dependencies]
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"
[lints.clippy]
all = "warn"
pedantic = "warn"