From f280c4b8fa05a69024f03f7732f61ba7a2f11779 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Tue, 27 Dec 2022 15:55:59 +0100 Subject: [PATCH] Fix clippy: Remove unnecessary lifetime specifier Signed-off-by: Matthias Beyer --- src/registration.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/registration.rs b/src/registration.rs index 40e12a1..4f4e8af 100644 --- a/src/registration.rs +++ b/src/registration.rs @@ -16,7 +16,7 @@ use crate::{ Result, }; -const DEFAULT_REDIRECT_URI: &'static str = "urn:ietf:wg:oauth:2.0:oob"; +const DEFAULT_REDIRECT_URI: &str = "urn:ietf:wg:oauth:2.0:oob"; /// Handles registering your mastodon app to your instance. It is recommended /// you cache your data struct to avoid registering on every run.