summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Somers <asomers@gmail.com>2019-06-30 21:05:25 -0600
committerAlan Somers <asomers@gmail.com>2019-06-30 21:05:25 -0600
commit98531c8f04bc23fb632c08e06dc4e56284b9c027 (patch)
tree84013e7c9c59972d66f8671913340b1f3293b71c
parent7fa4f233ca4f87269d4c44c9ead7d60a8d07ef18 (diff)
downloadnix-98531c8f04bc23fb632c08e06dc4e56284b9c027.zip
Restrict tempfile to < 3.0.9
tempfile release 3.0.9 raised the MSRV without a minor version bump. See https://github.com/Stebalien/tempfile/issues/100
-rw-r--r--Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 622e4331..6b9f7517 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -28,7 +28,7 @@ cc = "1"
bytes = "0.4.8"
lazy_static = "1.2"
rand = ">= 0.6, < 0.7"
-tempfile = "3.0.5"
+tempfile = ">= 3.0.5, < 3.0.9"
[target.'cfg(any(target_os = "android", target_os = "linux"))'.dev-dependencies]
caps = "0.3.1"