73 lines
1.5 KiB
TOML
73 lines
1.5 KiB
TOML
|
# 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 = "2018"
|
||
|
name = "cookie_store"
|
||
|
version = "0.16.1"
|
||
|
authors = ["Patrick Fernie <patrick.fernie@gmail.com>"]
|
||
|
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/Apache-2.0"
|
||
|
repository = "https://github.com/pfernie/cookie_store"
|
||
|
|
||
|
[package.metadata.docs.rs]
|
||
|
all-features = true
|
||
|
rustdoc-args = [
|
||
|
"--cfg",
|
||
|
"docsrs",
|
||
|
]
|
||
|
|
||
|
[dependencies.cookie]
|
||
|
version = "0.16.0"
|
||
|
features = ["percent-encode"]
|
||
|
|
||
|
[dependencies.idna]
|
||
|
version = "0.2.3"
|
||
|
|
||
|
[dependencies.indexmap]
|
||
|
version = "1.6.2"
|
||
|
optional = true
|
||
|
|
||
|
[dependencies.log]
|
||
|
version = "0.4.14"
|
||
|
|
||
|
[dependencies.publicsuffix]
|
||
|
version = "2.1.1"
|
||
|
|
||
|
[dependencies.serde]
|
||
|
version = "1.0.136"
|
||
|
features = ["derive"]
|
||
|
|
||
|
[dependencies.serde_json]
|
||
|
version = "1.0.79"
|
||
|
|
||
|
[dependencies.time]
|
||
|
version = "0.3.7"
|
||
|
|
||
|
[dependencies.url]
|
||
|
version = "2.2.2"
|
||
|
|
||
|
[features]
|
||
|
default = []
|
||
|
preserve_order = ["indexmap"]
|