actix-webfinger/Cargo.toml
asonix 0835c0118e
All checks were successful
continuous-integration/drone/push Build is passing
Make awc optional
2023-08-17 16:57:49 -05:00

26 lines
625 B
TOML

[package]
name = "actix-webfinger"
description = "Types and helpers to create and fetch Webfinger resources"
version = "0.5.0"
license = "GPL-3.0"
authors = ["asonix <asonix@asonix.dog>"]
repository = "https://git.asonix.dog/asonix/actix-webfinger"
readme = "README.md"
edition = "2021"
[features]
default = ["client"]
client = ["dep:awc"]
[dependencies]
actix-rt = "2.6.0"
actix-web = { version = "4.0.1", default-features = false }
awc = { version = "3.0.0", default-features = false, optional = true }
serde = "1.0"
serde_derive = "1.0"
thiserror = "1.0"
[dev-dependencies]
pretty_env_logger = "0.5"
serde_json = "1.0"