[package]
edition = "2021"
rust-version = "1.74"
name = "set-cookie-parser"
version = "0.1.1"
authors = ["trananhtung"]
build = false
exclude = [
"/.github",
"/.gitignore",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
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."
homepage = "https://github.com/trananhtung/set-cookie-parser"
documentation = "https://docs.rs/set-cookie-parser"
readme = "README.md"
keywords = [
"cookie",
"set-cookie",
"http",
"header",
"parser",
]
categories = [
"parser-implementations",
"web-programming",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/trananhtung/set-cookie-parser"
[lib]
name = "set_cookie_parser"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies]
[lints.clippy]
all = "warn"
pedantic = "warn"
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"