diff --git a/.cargo/config.toml b/.cargo/config.toml new file mode 100644 index 00000000..34415225 --- /dev/null +++ b/.cargo/config.toml @@ -0,0 +1,2 @@ +[target.x86_64-pc-windows-msvc] +rustflags = ["-C", "link-arg=/STACK:8000000"] diff --git a/crates/app/src/main.rs b/crates/app/src/main.rs index 41027bc1..752e088e 100644 --- a/crates/app/src/main.rs +++ b/crates/app/src/main.rs @@ -1,4 +1,4 @@ -use std::sync::Arc; +use std::{sync::Arc, thread}; use anyhow::Result; use app_state::AppState;