From 0447c343698c4c8ff69e730bc1cf9f1db1677e15 Mon Sep 17 00:00:00 2001 From: David Yamnitsky Date: Sat, 1 Oct 2022 20:57:08 -0400 Subject: [PATCH] rely on semver compatibility of dependencies --- Cargo.lock | 13 +++++++++++-- Cargo.toml | 16 ++++++++-------- 2 files changed, 19 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 71a9136..bb8e03b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,9 +4,18 @@ version = 3 [[package]] name = "base64" -version = "0.13.0" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd" +checksum = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e" +dependencies = [ + "byteorder", +] + +[[package]] +name = "byteorder" +version = "1.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" [[package]] name = "bytes" diff --git a/Cargo.toml b/Cargo.toml index 6b538ff..3adcbb5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,14 +21,14 @@ exclude = [ build = "build.rs" [dependencies] -base64 = { version=">=0.10.1, <0.14" } -bytes = { version=">=1.0.0, <1.2.0" } -http = { version=">=0.2.2, <0.3" } -httpdate = { version=">=0.3.2, <1.1" } -language-tags = { version=">=0.3.1, <0.4" } -mime = { version=">=0.3.2, <0.4" } -percent-encoding = { version=">=2.1.0, <2.2" } -unicase = { version=">=2.6.0, <2.7" } +base64 = { version = "^0.10.1" } +bytes = { version = "^1.0.0" } +http = { version = "^0.2.2" } +httpdate = { version = "^0.3.2" } +language-tags = { version = "^0.3.1" } +mime = { version = "^0.3.2" } +percent-encoding = { version = "^2.1.0" } +unicase = { version = "^2.6.0" } [features] nightly = []