File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
frameworks/Rust/hyperlane/src Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,9 @@ pub(crate) mod utils;
1212
1313pub ( crate ) use r#const:: * ;
1414pub ( crate ) use db:: * ;
15+ pub ( crate ) use r#type:: * ;
16+ pub ( crate ) use utils:: * ;
17+
1518pub ( crate ) use hyperlane:: {
1619 futures:: { executor:: block_on, future:: join_all} ,
1720 once_cell:: sync:: Lazy ,
@@ -33,8 +36,6 @@ pub(crate) use sqlx::{
3336 * ,
3437} ;
3538pub ( crate ) use std:: { fmt, hint:: black_box, sync:: Arc } ;
36- pub ( crate ) use r#type:: * ;
37- pub ( crate ) use utils:: * ;
3839
3940fn main ( ) {
4041 run_server ( ) ;
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ fn runtime() -> Runtime {
44 Builder :: new_multi_thread ( )
55 . worker_threads ( get_thread_count ( ) )
66 . thread_stack_size ( 1_048_576 )
7- . max_blocking_threads ( 1024000 )
7+ . max_blocking_threads ( 1_024_000 )
88 . max_io_events_per_tick ( 1024000 )
99 . enable_all ( )
1010 . build ( )
You can’t perform that action at this time.
0 commit comments