apub/apub-reqwest/Cargo.toml

23 lines
641 B
TOML
Raw Normal View History

2021-11-18 04:17:36 +00:00
[package]
name = "apub-reqwest"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
apub-core = { version = "0.1.0", path = "../apub-core/" }
2021-11-28 02:06:53 +00:00
async-trait = "0.1.51"
2021-11-22 23:26:10 +00:00
http-signature-normalization-reqwest = { version = "0.2.1", default-features = false, features = ["digest"] }
2021-11-18 04:17:36 +00:00
httpdate = "1.0.2"
reqwest = { version = "0.11.6", default-features = false, features = ["json"] }
serde = "1"
serde_json = "1"
thiserror = "1"
url = "2"
2021-11-22 23:26:10 +00:00
[dev-dependencies]
apub-rustcrypto = { version = "0.1.0", path = "../apub-rustcrypto/" }
rand = "0.8"
rsa = "0.5"