actix-webfinger/Cargo.toml

26 lines
625 B
TOML
Raw Permalink Normal View History

2019-01-27 20:45:44 +00:00
[package]
name = "actix-webfinger"
description = "Types and helpers to create and fetch Webfinger resources"
2023-08-17 21:57:49 +00:00
version = "0.5.0"
2019-01-27 20:45:44 +00:00
license = "GPL-3.0"
authors = ["asonix <asonix@asonix.dog>"]
2022-03-08 17:14:01 +00:00
repository = "https://git.asonix.dog/asonix/actix-webfinger"
2019-01-27 20:45:44 +00:00
readme = "README.md"
2021-10-21 21:21:44 +00:00
edition = "2021"
2019-01-27 20:45:44 +00:00
2023-08-17 21:57:49 +00:00
[features]
default = ["client"]
client = ["dep:awc"]
2019-01-27 20:45:44 +00:00
[dependencies]
2022-03-08 17:13:43 +00:00
actix-rt = "2.6.0"
actix-web = { version = "4.0.1", default-features = false }
2023-08-17 21:57:49 +00:00
awc = { version = "3.0.0", default-features = false, optional = true }
2019-01-27 20:45:44 +00:00
serde = "1.0"
serde_derive = "1.0"
2020-03-16 01:03:35 +00:00
thiserror = "1.0"
2019-01-27 20:45:44 +00:00
[dev-dependencies]
2023-06-03 18:12:28 +00:00
pretty_env_logger = "0.5"
2019-01-27 20:45:44 +00:00
serde_json = "1.0"