Skip to content

Commit

Permalink
bump dep versions
Browse files Browse the repository at this point in the history
  • Loading branch information
FerrahWolfeh committed Aug 29, 2023
1 parent 8593dba commit b305981
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 32 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ members = ["ibdl-common", "ibdl-core", "ibdl-extractors"]
[package]
name = "imageboard_downloader"
authors = ["Ferrah Aiko Wolf <ferrahwolfeh@proton.me>"]
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"
Expand All @@ -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]]
Expand Down
16 changes: 8 additions & 8 deletions ibdl-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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"


Expand All @@ -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"]
24 changes: 12 additions & 12 deletions ibdl-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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"]
14 changes: 7 additions & 7 deletions ibdl-extractors/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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]
Expand Down

0 comments on commit b305981

Please sign in to comment.