We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 35ca632 + a0cfeb9 commit c512fa3Copy full SHA for c512fa3
Cargo.toml
@@ -1,6 +1,6 @@
1
[package]
2
name = "cssparser"
3
-version = "0.23.6"
+version = "0.23.7"
4
authors = [ "Simon Sapin <simon.sapin@exyr.org>" ]
5
6
description = "Rust implementation of CSS Syntax Level 3"
build.rs
@@ -37,7 +37,7 @@ mod codegen {
37
println!("cargo:rerun-if-changed={}", input.display());
38
39
// We have stack overflows on Servo's CI.
40
- let handle = Builder::new().stack_size(8 * 1024 * 1024).spawn(move || {
+ let handle = Builder::new().stack_size(128 * 1024 * 1024).spawn(move || {
41
match_byte::expand(&input, &output);
42
}).unwrap();
43
0 commit comments