cookie_store 0.22.1

Implementation of Cookie storage and retrieval
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.88.0"
name = "cookie_store"
version = "0.22.1"
authors = ["Patrick Fernie <patrick.fernie@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Implementation of Cookie storage and retrieval"
documentation = "https://docs.rs/cookie_store"
readme = "README.md"
keywords = [
    "cookie",
    "jar",
    "store",
    "http",
]
categories = [
    "web-programming::http-client",
    "web-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/pfernie/cookie_store"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
default = [
    "public_suffix",
    "serde_json",
]
log_secure_cookie_values = []
preserve_order = ["dep:indexmap"]
public_suffix = ["dep:publicsuffix"]
serde = [
    "dep:serde",
    "dep:serde_derive",
]
serde_json = [
    "serde",
    "dep:serde_json",
]
serde_ron = [
    "serde",
    "dep:ron",
]
wasm-bindgen = ["time/wasm-bindgen"]

[lib]
name = "cookie_store"
path = "src/lib.rs"

[dependencies.cookie]
version = "0.18.0"
features = ["percent-encode"]

[dependencies.document-features]
version = "0.2.10"

[dependencies.idna]
version = "1.0"

[dependencies.indexmap]
version = "2.6.0"
optional = true

[dependencies.log]
version = "0.4.17"

[dependencies.publicsuffix]
version = "2.2.3"
optional = true

[dependencies.ron]
version = "0.10.1"
optional = true

[dependencies.serde]
version = "1.0.147"
optional = true

[dependencies.serde_derive]
version = "1.0.147"
optional = true

[dependencies.serde_json]
version = "1.0.87"
optional = true

[dependencies.time]
version = "0.3.47"

[dependencies.url]
version = "2.3.1"