do 8 threads

This commit is contained in:
Bryan Stitt 2023-11-14 16:42:21 -08:00
parent 1c4f9ade27
commit a43c0a5a82
2 changed files with 4 additions and 4 deletions

@ -9,7 +9,7 @@ rustflags = [
# uuid unstable is needed for zerocopy deserialize
"--cfg", "uuid_unstable",
# parallel build frontend
"-Z", "threads=0",
"-Z", "threads=8",
]
rustdocflags = [
# potentially faster. https://github.com/aws/aws-graviton-getting-started/blob/main/rust.md
@ -21,7 +21,7 @@ rustdocflags = [
# uuid unstable is needed for zerocopy deserialize
"--cfg", "uuid_unstable",
# parallel build frontend
"-Z", "threads=0",
"-Z", "threads=8",
]
[registries.crates-io]

@ -10,7 +10,7 @@ rustflags = [
# uuid unstable is needed for zerocopy deserialize
"--cfg", "uuid_unstable",
# parallel build frontend
"-Z", "threads=0",
"-Z", "threads=8",
]
[target.aarch64-unknown-linux-gnu]
@ -27,5 +27,5 @@ rustflags = [
# uuid unstable is needed for zerocopy deserialize
"--cfg", "uuid_unstable",
# parallel build frontend
"-Z", "threads=0",
"-Z", "threads=8",
]