File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ fn bootstrap() {
2222 . build_transport ( false )
2323 . out_dir ( & out_dir)
2424 . type_attribute ( ".proxy" , "#[derive(serde::Serialize, serde::Deserialize)]" )
25- . compile_with_config ( config, iface_files, dirs)
25+ . compile_protos_with_config ( config, iface_files, dirs)
2626 . unwrap ( ) ;
2727
2828 let status = Command :: new ( "git" )
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ use uuid::Uuid;
1515
1616#[ derive( Clone ) ]
1717pub struct S3MockServer {
18+ #[ allow( dead_code) ]
1819 root : PathBuf ,
1920 buckets : Arc < Mutex < HashMap < String , Bucket > > > ,
2021}
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ fn bootstrap() {
1717 . build_server ( true )
1818 . build_transport ( true )
1919 . out_dir ( & out_dir)
20- . compile_with_config ( config, iface_files, dirs)
20+ . compile_protos_with_config ( config, iface_files, dirs)
2121 . unwrap ( ) ;
2222
2323 let status = Command :: new ( "git" )
Original file line number Diff line number Diff line change @@ -10,11 +10,11 @@ use crate::util::ConnectorService;
1010use crate :: { Error , Rows , Statement } ;
1111use bytes:: Bytes ;
1212use futures:: future:: BoxFuture ;
13- use futures:: { Stream , TryStreamExt } ;
13+ use futures:: Stream ;
1414use http:: header:: AUTHORIZATION ;
1515use http:: { HeaderValue , StatusCode } ;
1616use http_body_util:: BodyExt ;
17- use std :: io :: ErrorKind ;
17+
1818use std:: sync:: Arc ;
1919use std:: time:: Duration ;
2020
Original file line number Diff line number Diff line change @@ -198,6 +198,7 @@ impl SyncContext {
198198 }
199199
200200 #[ tracing:: instrument( skip( self , frames) ) ]
201+ #[ allow( private_interfaces) ]
201202 pub ( crate ) async fn push_frames (
202203 & mut self ,
203204 frames : Bytes ,
You can’t perform that action at this time.
0 commit comments