[package]
edition = "2021"
name = "cookie-rs"
version = "0.4.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "library for working with HTTP cookies"
readme = "README.md"
keywords = [
"cookie",
"http",
"web",
]
license = "MIT"
repository = "https://github.com/magwoo/cookie-rs"
[lib]
name = "cookie_rs"
path = "src/lib.rs"
[[test]]
name = "jar"
path = "tests/jar.rs"
[[test]]
name = "parse"
path = "tests/parse.rs"
[[test]]
name = "string"
path = "tests/string.rs"
[dependencies]