Compare commits

...

2 commits

Author SHA1 Message Date
asonix 0835c0118e Make awc optional
All checks were successful
continuous-integration/drone/push Build is passing
2023-08-17 16:57:49 -05:00
asonix 5dec9f6427 Update flake 2023-08-17 16:57:39 -05:00
3 changed files with 14 additions and 8 deletions

View file

@ -1,17 +1,21 @@
[package]
name = "actix-webfinger"
description = "Types and helpers to create and fetch Webfinger resources"
version = "0.4.1"
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 }
awc = { version = "3.0.0", default-features = false, optional = true }
serde = "1.0"
serde_derive = "1.0"
thiserror = "1.0"

View file

@ -5,11 +5,11 @@
"systems": "systems"
},
"locked": {
"lastModified": 1685518550,
"narHash": "sha256-o2d0KcvaXzTrPRIo0kOLV0/QXHhDQ5DTi+OxcjO8xqY=",
"lastModified": 1689068808,
"narHash": "sha256-6ixXo3wt24N/melDWjq70UuHQLxGV8jZvooRanIHXw0=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "a1720a10a6cfe8234c0e93907ffe81be440f4cef",
"rev": "919d646de7be200f3bf08cb76ae1f09402b6f9b4",
"type": "github"
},
"original": {
@ -20,11 +20,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1685655444,
"narHash": "sha256-6EujQNAeaUkWvpEZZcVF8qSfQrNVWFNNGbUJxv/A5a8=",
"lastModified": 1692174805,
"narHash": "sha256-xmNPFDi/AUMIxwgOH/IVom55Dks34u1g7sFKKebxUm0=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "e635192892f5abbc2289eaac3a73cdb249abaefd",
"rev": "caac0eb6bdcad0b32cb2522e03e4002c8975c62e",
"type": "github"
},
"original": {

View file

@ -117,6 +117,7 @@ use actix_web::{
web::{get, Query},
FromRequest, HttpResponse, Resource,
};
#[cfg(feature = "client")]
use awc::Client;
use serde_derive::{Deserialize, Serialize};
use std::{future::Future, pin::Pin};
@ -635,6 +636,7 @@ impl Webfinger {
.json(&self)
}
#[cfg(feature = "client")]
/// Fetch a webfinger with subject `user` from a given `domain`
///
/// This method takes a `Client` so derivative works can provide their own configured clients