Update dependencies.

This commit is contained in:
Orne Brocaar 2025-05-26 14:01:45 +01:00
parent 1ead82e8a5
commit c016cd1f7d
5 changed files with 229 additions and 229 deletions

View File

@ -28,7 +28,7 @@ jobs:
name: Install Nix name: Install Nix
uses: cachix/install-nix-action@v27 uses: cachix/install-nix-action@v27
with: with:
nix_path: nixpkgs=channel:nixos-24.11 nix_path: nixpkgs=channel:nixos-25.05
- -
name: Cargo cache name: Cargo cache
uses: actions/cache@v4 uses: actions/cache@v4
@ -69,7 +69,7 @@ jobs:
name: Install Nix name: Install Nix
uses: cachix/install-nix-action@v27 uses: cachix/install-nix-action@v27
with: with:
nix_path: nixpkgs=channel:nixos-24.11 nix_path: nixpkgs=channel:nixos-25.05
- -
name: Cargo cache name: Cargo cache
uses: actions/cache@v4 uses: actions/cache@v4

444
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -10,7 +10,7 @@
[dependencies] [dependencies]
chirpstack_api = { path = "../api/rust", version = "4.13.0-test.1" } chirpstack_api = { path = "../api/rust", version = "4.13.0-test.1" }
redis = { version = "0.29", features = [ redis = { version = "0.31", features = [
"cluster-async", "cluster-async",
"tokio-rustls-comp", "tokio-rustls-comp",
] } ] }

View File

@ -34,8 +34,8 @@
tokio-postgres = { version = "0.7", optional = true } tokio-postgres = { version = "0.7", optional = true }
tokio-postgres-rustls = { version = "0.13", optional = true } tokio-postgres-rustls = { version = "0.13", optional = true }
bigdecimal = "0.4" bigdecimal = "0.4"
redis = { version = "0.29", features = ["tls-rustls", "tokio-rustls-comp"] } redis = { version = "0.31", features = ["tls-rustls", "tokio-rustls-comp"] }
deadpool-redis = { version = "0.20", features = ["cluster", "serde"] } deadpool-redis = { version = "0.21", features = ["cluster", "serde"] }
# Logging # Logging
tracing = "0.1" tracing = "0.1"
@ -137,7 +137,7 @@
] } ] }
# Misc # Misc
uuid = { version = "1.16", features = ["v4", "serde"] } uuid = { version = "1.17", features = ["v4", "serde"] }
chrono = "0.4" chrono = "0.4"
async-trait = "0.1" async-trait = "0.1"
aes = "0.8" aes = "0.8"

View File

@ -1,4 +1,4 @@
{ pkgs ? import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/nixos-24.11.tar.gz") {} }: { pkgs ? import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/nixos-25.05.tar.gz") {} }:
pkgs.mkShell { pkgs.mkShell {
nativeBuildInputs = [ nativeBuildInputs = [