From b305981939a87a7d3d7339c477d5cde0800cfc44 Mon Sep 17 00:00:00 2001 From: Ferrah Aiko Wolf Date: Tue, 29 Aug 2023 13:19:36 -0300 Subject: [PATCH] bump dep versions --- Cargo.toml | 10 +++++----- ibdl-common/Cargo.toml | 16 ++++++++-------- ibdl-core/Cargo.toml | 24 ++++++++++++------------ ibdl-extractors/Cargo.toml | 14 +++++++------- 4 files changed, 32 insertions(+), 32 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 7f95d79..3c1f2ee 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ members = ["ibdl-common", "ibdl-core", "ibdl-extractors"] [package] name = "imageboard_downloader" authors = ["Ferrah Aiko Wolf "] -version = "1.3.0" +version = "1.3.2" edition = "2021" description = "Cli utility to bulk download images from popular imageboard sites (Boorus) using their APIs" license = "MIT" @@ -20,15 +20,15 @@ include = ["**/*.rs", "Cargo.toml"] [dependencies] env_logger = "0.10.0" spinoff = "0.8.0" -ibdl-core = { version = "1.3.1", path = "./ibdl-core" } -ibdl-extractors = { version = "1.3.0", path = "./ibdl-extractors" } -ibdl-common = { version = "1.3.0", path = "./ibdl-common" } +ibdl-core = { version = "1.3.2", path = "./ibdl-core" } +ibdl-extractors = { version = "1.3.1", path = "./ibdl-extractors" } +ibdl-common = { version = "1.3.1", path = "./ibdl-common" } color-eyre = "0.6.2" once_cell = "1.18.0" [dev-dependencies] criterion = { version = "0.5.1", features = ["html_reports"] } -ahash = { version = "0.8.0", features = ["serde"] } +ahash = { version = "0.8.3", features = ["serde"] } rand = "0.8.5" [[bench]] diff --git a/ibdl-common/Cargo.toml b/ibdl-common/Cargo.toml index d751ab1..a0cc7e9 100644 --- a/ibdl-common/Cargo.toml +++ b/ibdl-common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ibdl-common" -version = "1.3.0" +version = "1.3.1" edition = "2021" description = "Common functions and data structs for parsing and downloading posts from imageboards" license = "MIT" @@ -10,13 +10,13 @@ documentation = "https://docs.rs/ibdl-common" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -log = "0.4.17" +log = "0.4.20" directories = "5.0.1" md5 = "0.7.0" -thiserror = "1.0.32" -thiserror-impl = "1.0.32" -serde_json = "1.0.83" -zstd = "0.12.1" +thiserror = "1.0.47" +thiserror-impl = "1.0.47" +serde_json = "1.0.105" +zstd = "0.12.4" bincode = "1.3.3" @@ -25,10 +25,10 @@ version = "1" features = ["macros", "fs", "rt-multi-thread"] [dependencies.serde] -version = "1.0.151" +version = "1.0.188" features = ["derive"] [dependencies.reqwest] -version = "0.11.13" +version = "0.11.20" default-features = false features = ["json", "stream", "rustls-tls"] diff --git a/ibdl-core/Cargo.toml b/ibdl-core/Cargo.toml index 30aeb4e..80f1868 100644 --- a/ibdl-core/Cargo.toml +++ b/ibdl-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ibdl-core" -version = "1.3.1" +version = "1.3.2" edition = "2021" description = "Main download infrastructure for imageboard_downloader" license = "MIT" @@ -10,26 +10,26 @@ documentation = "https://docs.rs/ibdl-core" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -indicatif = "0.17.0" -ibdl-common = { version = "1.3.0", path = "../ibdl-common" } -thiserror = "1.0.37" -thiserror-impl = "1.0.37" -bytes = "1.3.0" -futures = "0.3.25" +indicatif = "0.17.6" +ibdl-common = { version = "1.3.1", path = "../ibdl-common" } +thiserror = "1.0.47" +thiserror-impl = "1.0.47" +bytes = "1.4.0" +futures = "0.3.28" md5 = "0.7.0" -tokio-stream = "0.1.12" +tokio-stream = "0.1.14" owo-colors = "3.5.0" -once_cell = "1.17.1" +once_cell = "1.18.0" [dependencies.chrono] -version = "0.4.23" +version = "0.4.27" features = ["serde"] [dependencies.clap] -version = "4.0.29" +version = "4.4.1" features = ["derive", "cargo"] [dependencies.zip] -version = "0.6.3" +version = "0.6.6" default-features = false features = ["deflate", "time"] diff --git a/ibdl-extractors/Cargo.toml b/ibdl-extractors/Cargo.toml index c553781..3980a4d 100644 --- a/ibdl-extractors/Cargo.toml +++ b/ibdl-extractors/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ibdl-extractors" -version = "1.3.0" +version = "1.3.1" edition = "2021" description = "Imageboard post extractors used in imageboard_downloader" license = "MIT" @@ -10,12 +10,12 @@ documentation = "https://docs.rs/ibdl-extractors" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -ibdl-common = { version = "1.3.0", path = "../ibdl-common" } -thiserror = "1.0.37" -thiserror-impl = "1.0.37" -async-trait = "0.1.59" -rayon = "1.6.1" -toml = "0.7.2" +ibdl-common = { version = "1.3.1", path = "../ibdl-common" } +thiserror = "1.0.47" +thiserror-impl = "1.0.47" +async-trait = "0.1.73" +rayon = "1.7.0" +toml = "0.7.6" [dependencies.ahash]