File tree Expand file tree Collapse file tree 5 files changed +4
-6
lines changed Expand file tree Collapse file tree 5 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 4
4
# Please see LICENSE files in the repository root for full details.
5
5
6
6
# Rust
7
- target /
7
+ target
8
8
9
9
# Editors
10
10
.idea
Original file line number Diff line number Diff line change @@ -15,7 +15,6 @@ disallowed-methods = [
15
15
]
16
16
17
17
disallowed-types = [
18
- " rand::OsRng" ,
19
18
{ path = " std::path::PathBuf" , reason = " use camino::Utf8PathBuf instead" },
20
19
{ path = " std::path::Path" , reason = " use camino::Utf8Path instead" },
21
20
]
Original file line number Diff line number Diff line change @@ -341,8 +341,7 @@ pub async fn post(
341
341
342
342
let request = async_graphql:: http:: receive_body (
343
343
content_type,
344
- body. map_err ( |e| std:: io:: Error :: new ( std:: io:: ErrorKind :: Other , e) )
345
- . into_async_read ( ) ,
344
+ body. map_err ( std:: io:: Error :: other) . into_async_read ( ) ,
346
345
MultipartOptions :: default ( ) ,
347
346
)
348
347
. await ?
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ use ulid::Ulid;
13
13
use crate :: { Clock , repository_impl} ;
14
14
15
15
/// A [`CompatAccessTokenRepository`] helps interacting with
16
- /// [`CompatAccessToken`] saved in the storage backend
16
+ /// [`CompatAccessToken`] saved in the storage backend
17
17
#[ async_trait]
18
18
pub trait CompatAccessTokenRepository : Send + Sync {
19
19
/// The error type returned by the repository
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ use url::Url;
17
17
18
18
use crate :: { Clock , repository_impl} ;
19
19
20
- /// An [`OAuth2ClientRepository`] helps interacting with [`Client`] saved in the
20
+ /// An [`OAuth2ClientRepository`] helps interacting with [`Client`] saved in the
21
21
/// storage backend
22
22
#[ async_trait]
23
23
pub trait OAuth2ClientRepository : Send + Sync {
You can’t perform that action at this time.
0 commit comments