1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
From: Bastian Germann <bage@debian.org>
Date: Wed, 4 Sep 2024 20:11:38 +0200
Subject: Relax dependency versions
Forwarded: not-needed
---
Cargo.toml | 14 +++++++-------
favicon-scrapper/Cargo.toml | 2 +-
2 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/Cargo.toml b/Cargo.toml
index e38f24d..3bb8800 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -18,7 +18,7 @@ aes-gcm = "0.10"
anyhow = "1.0"
aperture = "0.9"
ashpd = {version = "0.11", default-features = false, features = ["gtk4", "tokio", "tracing"]}
-data-encoding = "2.8"
+data-encoding = "2.3"
diesel = {version = "2.0", features = ["sqlite", "r2d2"]}
diesel_migrations = {version = "2.0", features = ["sqlite"]}
favicon-scrapper = {path = "./favicon-scrapper"}
@@ -29,25 +29,25 @@ gettext-rs = {version = "0.7", features = ["gettext-system"]}
gtk = {package = "gtk4", version = "0.9", features = ["v4_10"]}
hex = {version = "0.4.3", features = ["serde"]}
image = {version = "0.25", default-features = false, features = ["png"]}
-oo7 = {version = "0.4", default-features = false, features = ["tokio", "native_crypto", "tracing"]}
+oo7 = {version = "0.3", default-features = false, features = ["tokio", "native_crypto", "tracing"]}
percent-encoding = "2.1"
-prost = "0.13"
+prost = "0.12"
qrencode = {version = "0.14", features = ["image"]}
-rand = { version = "0.9", default-features = false, features = ["thread_rng"] }
+rand = { version = "0.8", default-features = false, features = ["std_rng"] }
ring = "0.17"
rqrr = { version = "0.9", default-features = false, features = ["img"] }
rust-argon2 = {version = "2.0", default-features = false}
scrypt = {version = "0.11", default-features = false}
-search-provider = {version = "0.11", default-features = false, features = ["tokio"]}
+search-provider = {version = "0.10", default-features = false, features = ["tokio"]}
serde = "1.0"
serde_json = "1.0"
tokio = {version = "1.0", default-features = false, features = ["rt-multi-thread", "fs", "io-util"]}
tracing = {version = "0.1", default-features = false}
tracing-subscriber = {version = "0.3", default-features = false, features = ["fmt"]}
url = "2.2"
-uuid = {version = "1.13", features = ["v4"]}
+uuid = {version = "1.10", features = ["v4"]}
zeroize = {version = "1", features = ["zeroize_derive"]}
-zip = { version = "2.1", features = ["aes-crypto"] }
+zip = { version = ">= 2.1, < 6", features = ["aes-crypto"] }
[profile.dev.package.rqrr]
opt-level = 3
diff --git a/favicon-scrapper/Cargo.toml b/favicon-scrapper/Cargo.toml
index 949dbce..348bb47 100644
--- a/favicon-scrapper/Cargo.toml
+++ b/favicon-scrapper/Cargo.toml
@@ -7,7 +7,7 @@ name = "favicon-scrapper"
data-encoding = "2.3"
image = {version = "0.25", features = ["ico", "png"], default-features = false}
percent-encoding = "2.1"
-quick-xml = "0.37"
+quick-xml = "0.36"
reqwest = "0.12"
svg_metadata = "0.5"
tokio = {version = "1.0", default-features = false, features = ["rt-multi-thread", "fs", "io-util", "macros"]}
|