Compare commits

..

No commits in common. "0835c0118e4b96dd11078e59a133871de639c26b" and "c4d97f378f0c7240687b67ce406f8bc0e3d07d56" have entirely different histories.

3 changed files with 8 additions and 14 deletions

View file

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

View file

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

View file

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