25 lines
625 B
TOML
25 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"
|