From 907ebc4977036bbd5dca7fb0689b8a4b81eb3d6b Mon Sep 17 00:00:00 2001 From: Ivan Molodetskikh Date: Mon, 7 Oct 2024 20:47:46 +0300 Subject: 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. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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] -- cgit