Skip to content

Commit f2eb74b

Browse files
committed
feat: update
1 parent 0982cb2 commit f2eb74b

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

frameworks/Rust/hyperlane/src/main.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ pub(crate) mod utils;
1212

1313
pub(crate) use r#const::*;
1414
pub(crate) use db::*;
15+
pub(crate) use r#type::*;
16+
pub(crate) use utils::*;
17+
1518
pub(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
};
3538
pub(crate) use std::{fmt, hint::black_box, sync::Arc};
36-
pub(crate) use r#type::*;
37-
pub(crate) use utils::*;
3839

3940
fn main() {
4041
run_server();

frameworks/Rust/hyperlane/src/server.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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()

0 commit comments

Comments
 (0)