aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Molodetskikh <yalterz@gmail.com>2024-10-07 20:47:46 +0300
committerIvan Molodetskikh <yalterz@gmail.com>2024-10-15 10:06:55 +0300
commit907ebc4977036bbd5dca7fb0689b8a4b81eb3d6b (patch)
tree6461c4b2b3f202dbea89be78941adc6446e47128
parente4161be1bfe660493bdc4b69a176b3f50147a707 (diff)
downloadniri-907ebc4977036bbd5dca7fb0689b8a4b81eb3d6b.tar.gz
niri-907ebc4977036bbd5dca7fb0689b8a4b81eb3d6b.tar.bz2
niri-907ebc4977036bbd5dca7fb0689b8a4b81eb3d6b.zip
Add boxed_union proptest-derive feature
Our Op enum grew large enough to trigger a stack overflow in proptest-derive's generated code. Thankfully, this feature works around the problem.
-rw-r--r--Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 5ae38d7d..afd67a21 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -109,7 +109,7 @@ features = [
approx = "0.5.1"
k9.workspace = true
proptest = "1.5.0"
-proptest-derive = "0.5.0"
+proptest-derive = { version = "0.5.0", features = ["boxed_union"] }
xshell = "0.2.6"
[features]