cookie 0.15.2

HTTP cookie parsing and cookie jar management. Supports signed and private (encrypted, authenticated) jars.
Documentation
[build-dependencies.version_check]
version = "0.9"
[dependencies.aes-gcm]
optional = true
version = "0.8.0"

[dependencies.base64]
optional = true
version = "0.13"

[dependencies.hkdf]
optional = true
version = "0.10.0"

[dependencies.hmac]
optional = true
version = "0.10.0"

[dependencies.percent-encoding]
optional = true
version = "2.0"

[dependencies.rand]
optional = true
version = "0.8"

[dependencies.sha2]
optional = true
version = "0.9.0"

[dependencies.subtle]
optional = true
version = "2.3"

[dependencies.time]
default-features = false
features = ["std"]
version = "0.2.11"

[features]
key-expansion = ["sha2", "hkdf"]
percent-encode = ["percent-encoding"]
private = ["aes-gcm", "base64", "rand", "subtle"]
secure = ["private", "signed", "key-expansion"]
signed = ["hmac", "sha2", "base64", "rand", "subtle"]

[package]
authors = ["Sergio Benitez <sb@sergio.bz>", "Alex Crichton <alex@alexcrichton.com>"]
build = "build.rs"
description = "HTTP cookie parsing and cookie jar management. Supports signed and private\n(encrypted, authenticated) jars.\n"
documentation = "https://docs.rs/cookie"
edition = "2018"
license = "MIT OR Apache-2.0"
name = "cookie"
readme = "README.md"
repository = "https://github.com/SergioBenitez/cookie-rs"
version = "0.15.2"
[package.metadata.docs.rs]
all-features = true