reqwest_cookie_store_tokio/Cargo.toml

28 lines
986 B
TOML
Raw Normal View History

2021-05-10 00:26:55 +00:00
[package]
name = "reqwest_cookie_store"
2022-08-29 21:50:31 +00:00
version = "0.4.0"
2021-05-10 00:26:55 +00:00
authors = ["Patrick Fernie <patrick.fernie@gmail.com>"]
edition = "2018"
description = "A simple crate providing an implementation of the `reqwest::cookie::CookieStore` trait for `cookie_store::CookieStore`"
readme = "README.md"
repository = "https://github.com/pfernie/reqwest_cookie_store"
documentation = "https://docs.rs/reqwest_cookie_store"
license = "MIT/Apache-2.0" # https://spdx.org/licenses/
2021-05-10 01:08:36 +00:00
keywords = ["cookie", "jar", "store", "http", "reqwest"] # free text
2021-05-10 00:26:55 +00:00
categories = ["web-programming::http-client", "web-programming"] # https://crates.io/category_slugs
# https://doc.rust-lang.org/cargo/reference/manifest.html
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
bytes = "1.0.1"
cookie = "0.16.1"
cookie_store = "0.18.0"
2021-05-10 00:26:55 +00:00
reqwest = { version = "0.11.3", default-features = false, features = ["cookies"] }
url = "2.2.2"
[dev-dependencies]
2021-05-12 18:54:03 +00:00
tokio-test = "0.4.1"