From a0cfeb9d94764b41f2475451ad69f8577e2d1b7d Mon Sep 17 00:00:00 2001 From: Bastien Orivel Date: Mon, 30 Apr 2018 17:23:07 +0200 Subject: [PATCH] Set the stack size to 128MB for the build script 8MB doesn't seem to be enough for servo's CI... --- Cargo.toml | 2 +- build.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 32a1495d..e2a436fd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cssparser" -version = "0.23.6" +version = "0.23.7" authors = [ "Simon Sapin " ] description = "Rust implementation of CSS Syntax Level 3" diff --git a/build.rs b/build.rs index 54fea6a5..f8bc2305 100644 --- a/build.rs +++ b/build.rs @@ -37,7 +37,7 @@ mod codegen { println!("cargo:rerun-if-changed={}", input.display()); // We have stack overflows on Servo's CI. - let handle = Builder::new().stack_size(8 * 1024 * 1024).spawn(move || { + let handle = Builder::new().stack_size(128 * 1024 * 1024).spawn(move || { match_byte::expand(&input, &output); }).unwrap();