diff --git a/src/lib.rs b/src/lib.rs index 1399566..85e6ff9 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,6 @@ -#![feature(async_fn_in_trait)] +// Ignores: use of `async fn` in public traits is discouraged as auto trait bounds cannot be specified +// TODO: Maybe use the suggestion of removing async and replacing it with Future> +#![allow(async_fn_in_trait)] use crate::auth::{AccessToken, RefreshToken}; use crate::error::TeslatteError;