fix: bump stack size on Windows (#5301)

This commit is contained in:
DaniPopes
2023-11-05 18:58:29 +01:00
committed by GitHub
parent 52670a8b24
commit 898648758f

View File

@ -1,2 +1,16 @@
[alias] [alias]
docs = "doc --workspace --all-features --no-deps" docs = "doc --workspace --all-features --no-deps"
[target.x86_64-pc-windows-msvc]
rustflags = [
# Increases the stack size to 10MB, which is
# in line with Linux (whereas default for Windows is 1MB)
"-Clink-arg=/STACK:10000000",
]
[target.i686-pc-windows-msvc]
rustflags = [
# Increases the stack size to 10MB, which is
# in line with Linux (whereas default for Windows is 1MB)
"-Clink-arg=/STACK:10000000",
]