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
This commit is contained in:
Pascal Hartig
2020-05-12 04:17:05 -07:00
committed by Facebook GitHub Bot
parent 598fee9546
commit a3e323c4b5

View File

@@ -5,17 +5,17 @@ authors = ["Facebook, Inc."]
edition = "2018" edition = "2018"
[dependencies] [dependencies]
clap = "2.33.0" clap = "^2.33.0"
shellexpand = "2.0.0" shellexpand = "^2.0.0"
tar = "0.4.26" tar = "^0.4.26"
serde = { version = "1.0.106", features = ["derive"] } serde = { version = "^1.0.106", features = ["derive"] }
serde_yaml = "0.8.11" serde_yaml = "^0.8.11"
anyhow = "1.0.28" anyhow = "^1.0.28"
sha2 = "0.8.1" sha2 = "^0.8.1"
data-encoding = "2.2.0" data-encoding = "^2.2.0"
serde_json = "1.0.52" serde_json = "^1.0.52"
rayon = "1.3.0" rayon = "^1.3.0"
indicatif = "0.14.0" indicatif = "^0.14.0"
[dev-dependencies] [dev-dependencies]
tempdir = "0.3.7" tempdir = "^0.3.7"