From df7a1a2da4ec4a9a5597711a1bc5391f8be0ff81 Mon Sep 17 00:00:00 2001
From: naskya <m@naskya.net>
Date: Wed, 3 Jul 2024 13:24:50 +0900
Subject: [PATCH] chore: take care of subdependency versions in the lockfile

---
 Cargo.toml | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/Cargo.toml b/Cargo.toml
index 9ae97ff69e..12315f18eb 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -49,9 +49,10 @@ web-push = { git = "https://github.com/pimeys/rust-web-push.git", rev = "40febe4
 # subdependencies
 ## explicitly list OpenSSL to use the vendored version
 openssl = "0.10.64"
-## pin ravif and bitstream-io version because the latest one requires Rust 1.79
-ravif = "=0.11.5"
-bitstream-io = "=2.3.0"
+
+## some subdependencies require higher Rust version than 1.74 (our MSRV)
+## cargo update && cargo update ravif --precise 0.11.5 && cargo update bitstream-io --precise 2.3.0
+## to pin their versions if needed
 
 [profile.release]
 lto = true