From a3e323c4b57db6b142ef9a65904ba1dd8979c3ab Mon Sep 17 00:00:00 2001 From: Pascal Hartig Date: Tue, 12 May 2020 04:17:05 -0700 Subject: [PATCH] Loosen version constraints (#1150) Summary: Close https://github.com/facebook/flipper/issues/1147 Close https://github.com/facebook/flipper/issues/1148 Close https://github.com/facebook/flipper/issues/1148 Test Case: cargo run Pull Request resolved: https://github.com/facebook/flipper/pull/1150 Reviewed By: jknoxville Differential Revision: D21503792 Pulled By: passy fbshipit-source-id: f4093c76c93a836a4aaa4a9b0a08f6f5190fe2fd --- packer/Cargo.toml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/packer/Cargo.toml b/packer/Cargo.toml index 67d1492b3..94a9f4eaf 100644 --- a/packer/Cargo.toml +++ b/packer/Cargo.toml @@ -5,17 +5,17 @@ authors = ["Facebook, Inc."] edition = "2018" [dependencies] -clap = "2.33.0" -shellexpand = "2.0.0" -tar = "0.4.26" -serde = { version = "1.0.106", features = ["derive"] } -serde_yaml = "0.8.11" -anyhow = "1.0.28" -sha2 = "0.8.1" -data-encoding = "2.2.0" -serde_json = "1.0.52" -rayon = "1.3.0" -indicatif = "0.14.0" +clap = "^2.33.0" +shellexpand = "^2.0.0" +tar = "^0.4.26" +serde = { version = "^1.0.106", features = ["derive"] } +serde_yaml = "^0.8.11" +anyhow = "^1.0.28" +sha2 = "^0.8.1" +data-encoding = "^2.2.0" +serde_json = "^1.0.52" +rayon = "^1.3.0" +indicatif = "^0.14.0" [dev-dependencies] -tempdir = "0.3.7" +tempdir = "^0.3.7"