Skip to content

Commit 31162fd

Browse files
committed
Fix the build on Haiku
By restricting tempfile to 3.6.0 or lower. Stebalien/tempfile#246
1 parent 59e7794 commit 31162fd

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,9 @@ assert-impl = "0.1"
8080
lazy_static = "1.4"
8181
parking_lot = "0.12"
8282
rand = "0.8"
83-
tempfile = "3.3.0"
83+
# tempfile 3.7.0 doesn't build on Haiku
84+
# https://github.com/Stebalien/tempfile/issues/246
85+
tempfile = ">=3.3.0, < 3.7.0"
8486
semver = "1.0.7"
8587

8688
[target.'cfg(any(target_os = "android", target_os = "linux"))'.dev-dependencies]

0 commit comments

Comments
 (0)