rustycrawl-http-client 0.0.2

A reqwest-like Hyper client with automatic cookie storage
Documentation
[package]
name = "rustycrawl-http-client"
version = "0.0.2"
edition.workspace = true
license.workspace = true
rust-version.workspace = true
description = "A reqwest-like Hyper client with automatic cookie storage"
repository = "https://github.com/theduke/rustycrawl"
homepage = "https://github.com/theduke/rustycrawl"
documentation = "https://docs.rs/rustycrawl-http-client"
readme = "README.md"
keywords = ["cookies", "http", "hyper", "tokio", "web"]
categories = ["network-programming", "web-programming::http-client"]

[dependencies]
cookie = "0.18"
cookie_store = "0.22"
http = "1"
http-body-util = "0.1"
hyper = { version = "1", features = ["client"] }
hyper-rustls = { version = "0.27", default-features = false, features = ["http1", "http2", "ring", "tls12", "webpki-roots"] }
hyper-util = { version = "0.1", features = ["client-legacy", "http1", "http2", "tokio"] }
rustls = { version = "0.23", default-features = false, features = ["ring", "std"] }
serde = "1"
serde_json = "1"
thiserror = "2"
tokio = { version = "1", features = ["time"] }
url = "2"

[dev-dependencies]
tokio = { version = "1", features = ["io-util", "macros", "net", "rt-multi-thread"] }

[lints]
workspace = true