windows: Set the default stack size to 8M on Windows. (#228)
This commit is contained in:
parent
16396d3583
commit
ac83fad692
2 changed files with 3 additions and 1 deletions
2
.cargo/config.toml
Normal file
2
.cargo/config.toml
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
[target.x86_64-pc-windows-msvc]
|
||||
rustflags = ["-C", "link-arg=/STACK:8000000"]
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
use std::sync::Arc;
|
||||
use std::{sync::Arc, thread};
|
||||
|
||||
use anyhow::Result;
|
||||
use app_state::AppState;
|
||||
|
|
|
|||
Loading…
Reference in a new issue