Use minimal dependency versions for MSRV tests on CI (#1109)

This commit is contained in:
David Pedersen
2022-06-27 20:44:20 +02:00
committed by GitHub
parent cb207472f4
commit f6b1d35c51
6 changed files with 49 additions and 8 deletions
+2 -2
View File
@@ -48,7 +48,7 @@ tower-service = "0.3"
# optional dependencies
base64 = { version = "0.13", optional = true }
headers = { version = "0.3", optional = true }
headers = { version = "0.3.7", optional = true }
multer = { version = "2.0.0", optional = true }
serde_json = { version = "1.0", features = ["raw_value"], optional = true }
serde_urlencoded = { version = "0.7", optional = true }
@@ -60,7 +60,7 @@ anyhow = "1.0"
futures = "0.3"
quickcheck = "1.0"
quickcheck_macros = "1.0"
reqwest = { version = "0.11", default-features = false, features = ["json", "stream", "multipart"] }
reqwest = { version = "0.11.11", default-features = false, features = ["json", "stream", "multipart"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.6.1", features = ["macros", "rt", "rt-multi-thread", "net", "test-util"] }