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 44# Please see LICENSE files in the repository root for full details.
55
66# Rust
7- target /
7+ target
88
99# Editors
1010.idea
Original file line number Diff line number Diff line change @@ -15,7 +15,6 @@ disallowed-methods = [
1515]
1616
1717disallowed-types = [
18- " rand::OsRng" ,
1918 { path = " std::path::PathBuf" , reason = " use camino::Utf8PathBuf instead" },
2019 { path = " std::path::Path" , reason = " use camino::Utf8Path instead" },
2120]
Original file line number Diff line number Diff line change @@ -341,8 +341,7 @@ pub async fn post(
341341
342342 let request = async_graphql:: http:: receive_body (
343343 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 ( ) ,
346345 MultipartOptions :: default ( ) ,
347346 )
348347 . await ?
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ use ulid::Ulid;
1313use crate :: { Clock , repository_impl} ;
1414
1515/// A [`CompatAccessTokenRepository`] helps interacting with
16- /// [`CompatAccessToken`] saved in the storage backend
16+ /// [`CompatAccessToken`] saved in the storage backend
1717#[ async_trait]
1818pub trait CompatAccessTokenRepository : Send + Sync {
1919 /// The error type returned by the repository
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ use url::Url;
1717
1818use crate :: { Clock , repository_impl} ;
1919
20- /// An [`OAuth2ClientRepository`] helps interacting with [`Client`] saved in the
20+ /// An [`OAuth2ClientRepository`] helps interacting with [`Client`] saved in the
2121/// storage backend
2222#[ async_trait]
2323pub trait OAuth2ClientRepository : Send + Sync {
You can’t perform that action at this time.
0 commit comments