dsq-io-https 0.2.0

HTTP(S) I/O plugin for dsq
Documentation
[package]
name = "dsq-io-https"
version = "0.2.0"
edition = "2021"
authors = ["Durable Programming LLC"]
description = "HTTP(S) I/O plugin for dsq"
license = "MIT OR Apache-2.0"
repository = "https://github.com/durableprogramming/dsq"
readme = "README.md"
keywords = ["io", "http", "https"]
categories = ["network-programming"]

[lints]
workspace = true

[dependencies]
# Error handling
thiserror = { workspace = true }
anyhow = { workspace = true }

# HTTP client
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls"] }

# Async
tokio = { workspace = true, features = ["rt", "rt-multi-thread"] }

[features]
default = []