From da3ac7a2f1e3b3d83572fad729ea4dba1d074506 Mon Sep 17 00:00:00 2001 From: strawberry Date: Fri, 12 Jan 2024 19:27:02 -0500 Subject: [PATCH] deps updates again Signed-off-by: strawberry --- .github/workflows/ci.yml | 2 +- Cargo.lock | 8 ++++---- Cargo.toml | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c9e0fb38..8986e7ff 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: run: rm -rf "$HOME/.rustup" "$HOME/.cargo" - name: Install Nix (with flakes and nix-command enabled) - uses: cachix/install-nix-action@v24 + uses: cachix/install-nix-action@v25 with: nix_path: nixpkgs=channel:nixos-unstable diff --git a/Cargo.lock b/Cargo.lock index a96401ac..a659a205 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -338,9 +338,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.4.15" +version = "4.4.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c12ed66a79a555082f595f7eb980d08669de95009dd4b3d61168c573ebe38fc9" +checksum = "58e54881c004cec7895b0068a0a954cd5d62da01aef83fa35b1e594497bf5445" dependencies = [ "clap_builder", "clap_derive", @@ -348,9 +348,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.4.15" +version = "4.4.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0f4645eab3431e5a8403a96bea02506a8b35d28cd0f0330977dd5d22f9c84f43" +checksum = "59cb82d7f531603d2fd1f507441cdd35184fa81beff7bd489570de7f773460bb" dependencies = [ "anstyle", "clap_lex", diff --git a/Cargo.toml b/Cargo.toml index d1bdad5f..c1ee89e2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -59,7 +59,7 @@ thiserror = "1.0.56" # Used to generate thumbnails for images image = { version = "0.24.7", default-features = false, features = ["jpeg", "png", "gif", "webp"] } # Used to encode server public key -base64 = "0.21.6" +base64 = "0.21.7" # Used when hashing the state ring = "0.17.7" # Used when querying the SRV record of other servers @@ -93,7 +93,7 @@ hmac = "0.12.1" sha-1 = "0.10.1" sha2 = { version = "0.10.8" } # used for conduit's CLI and admin room command parsing -clap = { version = "4.4.14", default-features = false, features = ["std", "derive", "help", "usage", "error-context"] } +clap = { version = "4.4.16", default-features = false, features = ["std", "derive", "help", "usage", "error-context"] } futures-util = { version = "0.3.30", default-features = false } # Used for reading the configuration from conduit.toml & environment variables figment = { version = "0.10.13", features = ["env", "toml"] }