cookie 0.11.5

HTTP cookie parsing and cookie jar management. Supports signed and private (encrypted, authenticated) jars.
Documentation
[package]
name = "cookie"
version = "0.11.5"
authors = ["Sergio Benitez <sb@sergio.bz>", "Alex Crichton <alex@alexcrichton.com>"]
edition = "2018"
license = "MIT/Apache-2.0"
repository = "https://github.com/SergioBenitez/cookie-rs"
documentation = "https://docs.rs/cookie"
description = """
HTTP cookie parsing and cookie jar management. Supports signed and private
(encrypted, authenticated) jars.
"""

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

[dependencies]
time = "0.1"
percent-encoding = { version = "2.0", optional = true }

# dependencies for secure (private/signed) functionality
aes-gcm = { version = "0.8.0", optional = true }
hmac = { version = "0.10.1", optional = true }
sha2 = { version = "0.9.3", optional = true }
base64 = { version = "0.13.0", optional = true }
rand = { version = "0.8.3", optional = true }
hkdf = { version = "0.10.0", optional = true }

[package.metadata.docs.rs]
all-features = true