From 4cfd77483869573d8d2319cd069fc8849a0b5dde Mon Sep 17 00:00:00 2001 From: Bas Zalmstra Date: Tue, 26 Sep 2023 10:52:55 +0200 Subject: [PATCH] bump: upgrade all dependencies --- Cargo.lock | 16 ++++----- crates/index/Cargo.toml | 10 +++--- crates/rattler_installs_packages/Cargo.toml | 38 ++++++++++----------- crates/rip/Cargo.toml | 16 ++++----- 4 files changed, 40 insertions(+), 40 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b963bdcc..863b51d4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -353,9 +353,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.4.4" +version = "4.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1d7b8d5ec32af0fadc644bf1fd509a688c2103b185644bb1e29d164e0703136" +checksum = "824956d0dca8334758a5b7f7e50518d66ea319330cbceedcf76905c2f6ab30e3" dependencies = [ "clap_builder", "clap_derive", @@ -363,9 +363,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.4.4" +version = "4.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5179bb514e4d7c2051749d8fcefa2ed6d06a9f4e6d69faf3805f5d80b8cf8d56" +checksum = "122ec64120a49b4563ccaedcbea7818d069ed8e9aa6d829b82d8a4128936b2ab" dependencies = [ "anstream", "anstyle", @@ -1108,7 +1108,7 @@ dependencies = [ name = "index" version = "0.1.0" dependencies = [ - "clap 4.4.4", + "clap 4.4.5", "dirs", "indexmap 2.0.0", "indicatif", @@ -1749,9 +1749,9 @@ dependencies = [ [[package]] name = "rattler_digest" -version = "0.6.0" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "747c978f52c6a6509a6b06b60486436057f9aeb3c11ed47fd0b5c1e07bfcf783" +checksum = "881d6040b07c00070386bc7d98f21b71474a0b7847fa5b32a7c5a0a01d028f8f" dependencies = [ "blake2", "digest", @@ -1951,7 +1951,7 @@ dependencies = [ name = "rip" version = "0.1.0" dependencies = [ - "clap 4.4.4", + "clap 4.4.5", "console", "dirs", "indexmap 2.0.0", diff --git a/crates/index/Cargo.toml b/crates/index/Cargo.toml index 1385743a..359c578a 100644 --- a/crates/index/Cargo.toml +++ b/crates/index/Cargo.toml @@ -11,20 +11,20 @@ readme.workspace = true rust-version.workspace = true [dependencies] -clap = { version = "4.3.23", features = ["derive"] } +clap = { version = "4.4.5", features = ["derive"] } dirs = "5.0.1" indexmap = "2.0.0" -indicatif = "0.17.6" +indicatif = "0.17.7" miette = { version = "5.10.0", features = ["fancy"] } -rand = "0.8.4" +rand = "0.8.5" rattler_installs_packages = { path = "../rattler_installs_packages" } rip = { path = "../rip" } rusqlite = { version = "0.29.0", features = ["bundled"] } serde_json = "1.0.107" -tokio = { version = "1.29.1", features = ["rt", "macros", "rt-multi-thread"] } +tokio = { version = "1.32.0", features = ["rt", "macros", "rt-multi-thread"] } tracing = "0.1.37" tracing-subscriber = { version = "0.3.17", features = ["env-filter"] } -url = "2.4.0" +url = "2.4.1" [package.metadata.release] diff --git a/crates/rattler_installs_packages/Cargo.toml b/crates/rattler_installs_packages/Cargo.toml index 35da225d..b39c6331 100644 --- a/crates/rattler_installs_packages/Cargo.toml +++ b/crates/rattler_installs_packages/Cargo.toml @@ -12,45 +12,45 @@ readme.workspace = true rust-version.workspace = true [dependencies] -async-trait = "0.1.71" -bytes = "1.4.0" +async-trait = "0.1.73" +bytes = "1.5.0" ciborium = "0.2.1" data-encoding = "2.4.0" -elsa = "1.8.1" +elsa = "1.9.0" fs4 = "0.6.6" futures = "0.3.28" http = "0.2.9" http-cache-semantics = { version = "1.0.1", default-features = false, features = ["with_serde", "reqwest"] } indexmap = "2.0.0" -miette = "5.9.0" +miette = "5.10.0" mime = "0.3.17" once_cell = "1.18.0" parking_lot = "0.12.1" peg = "0.8.1" pep440 = "0.2.0" -pin-project-lite = "0.2.10" -rattler_digest = { version = "0.6.0", features = ["serde"] } -regex = "1.9.1" -reqwest = { version = "0.11.18", features = ["json", "stream"] } +pin-project-lite = "0.2.13" +rattler_digest = { version = "0.9.0", features = ["serde"] } +regex = "1.9.5" +reqwest = { version = "0.11.20", features = ["json", "stream"] } serde = "1.0.188" -serde_json = "1.0.100" -serde_with = "3.0.0" -smallvec = { version = "1.11.0", features = ["const_generics", "const_new"] } -tempfile = "3.6.0" -thiserror = "1.0.43" +serde_json = "1.0.107" +serde_with = "3.3.0" +smallvec = { version = "1.11.1", features = ["const_generics", "const_new"] } +tempfile = "3.8.0" +thiserror = "1.0.48" tl = "0.7.7" -tokio = { version = "1.29.1" } -tokio-util = { version = "0.7.8", features = ["compat"] } +tokio = { version = "1.32.0" } +tokio-util = { version = "0.7.9", features = ["compat"] } tracing = { version = "0.1.37", default-features = false, features = ["attributes"] } -url = { version = "2.4.0", features = ["serde"] } +url = { version = "2.4.1", features = ["serde"] } zip = "0.6.6" [dev-dependencies] criterion = "0.3" -insta = { version = "1.30.0", features = ["ron"] } -miette = { version = "5.9.0", features = ["fancy"] } +insta = { version = "1.32.0", features = ["ron"] } +miette = { version = "5.10.0", features = ["fancy"] } once_cell = "1.18.0" -tokio = { version = "1.29.1", features = ["rt", "macros"] } +tokio = { version = "1.32.0", features = ["rt", "macros"] } [[bench]] name = "html" diff --git a/crates/rip/Cargo.toml b/crates/rip/Cargo.toml index 5386129c..fca16c5d 100644 --- a/crates/rip/Cargo.toml +++ b/crates/rip/Cargo.toml @@ -12,26 +12,26 @@ readme.workspace = true default-run = "rip" [dependencies] -clap = { version = "4.3.23", features = ["derive"] } +clap = { version = "4.4.5", features = ["derive"] } console = { version = "0.15.7", features = ["windows-console-colors"] } dirs = "5.0.1" indexmap = "2.0.0" -indicatif = "0.17.6" +indicatif = "0.17.7" itertools = "0.11.0" miette = { version = "5.10.0", features = ["fancy"] } -rand = "0.8.4" +rand = "0.8.5" rattler_installs_packages = { path = "../rattler_installs_packages" } -reqwest = "0.11.19" +reqwest = "0.11.20" resolvo = "0.1.0" rusqlite = { version = "0.29.0", features = ["bundled"] } serde = "1.0.188" serde_json = "1.0.107" -serde_with = "3.0.0" -tabwriter = { version = "1.2.1", features = ["ansi_formatting"] } -tokio = { version = "1.29.1", features = ["rt", "macros", "rt-multi-thread"] } +serde_with = "3.3.0" +tabwriter = { version = "1.3.0", features = ["ansi_formatting"] } +tokio = { version = "1.32.0", features = ["rt", "macros", "rt-multi-thread"] } tracing = "0.1.37" tracing-subscriber = { version = "0.3.17", features = ["env-filter"] } -url = "2.4.0" +url = "2.4.1" [package.metadata.release] # Dont publish the binary