feat: increase windows stack size to 8mb (fixes #87)

This commit is contained in:
InioX 2024-07-01 10:09:46 +02:00
parent 7ea9a7506d
commit 250809841e

11
.cargo/config.toml Normal file
View file

@ -0,0 +1,11 @@
# 64 bit MSVC
[target.x86_64-pc-windows-msvc]
rustflags = [
"-C", "link-arg=/STACK:8000000"
]
# 64 bit Mingw
[target.x86_64-pc-windows-gnu]
rustflags = [
"-C", "link-arg=-Wl,--stack,8000000"
]