From e74a9a19bfc489dab36bf085654fa52b3e708b64 Mon Sep 17 00:00:00 2001 From: gunther6000 Date: Sat, 8 Jun 2024 06:52:59 -0400 Subject: [PATCH 1/2] Updating Outdated dependencies --- Cargo.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 086978b..1e3fda3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,20 +24,20 @@ gtk4 = { version = "0.7.3", features = ["v4_8"] } gtk-macros = "0.3" html2pango = "0.6" lazy_static = "1.4" -libsqlite3-sys = { version = "0.25.2", features = ["bundled"] } +libsqlite3-sys = { version = "0.28.0", features = ["bundled"] } log = "0.4" once_cell = "1.8" -opener = "0.6" +opener = "0.7.1" rand = "0.8" regex = "1" -reqwest = { version = "0.11", features = ["json", "cookies", "blocking"] } +reqwest = { version = "0.12.4", features = ["json", "cookies", "blocking"] } serde = { version = "1", features = ["derive"] } serde_json = "1" sha-1 = "0.10" threadpool = "1.8" tokio = "1" -version-compare = "0.1" -zip = "0.6" +version-compare = "0.2.0" +zip = "2.1.3" [target.'cfg(target_os = "windows")'.build-dependencies] winres = "0.1" From f2e85759ca6272ac35035d9c66d082e811b07470 Mon Sep 17 00:00:00 2001 From: gunther6000 Date: Sat, 8 Jun 2024 08:10:54 -0400 Subject: [PATCH 2/2] Reverting Sqlite back to 0.25.2 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 1e3fda3..e9c729e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,7 @@ gtk4 = { version = "0.7.3", features = ["v4_8"] } gtk-macros = "0.3" html2pango = "0.6" lazy_static = "1.4" -libsqlite3-sys = { version = "0.28.0", features = ["bundled"] } +libsqlite3-sys = { version = "0.25.2", features = ["bundled"] } log = "0.4" once_cell = "1.8" opener = "0.7.1"