Skip to content

Commit

Permalink
chore: Upgrade various crates that are used internally (#551)
Browse files Browse the repository at this point in the history
These should not be breaking changes.
  • Loading branch information
spencewenski authored Jan 13, 2025
1 parent 9cdfadc commit fbaaef8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ futures = "0.3.30"
futures-core = "0.3.31"
chrono = { workspace = true, features = ["serde"] }
byte-unit = { version = "5.0.0", features = ["serde"] }
convert_case = "0.6.0"
convert_case = "0.7.1"
const_format = "0.2.32"
typed-builder = { workspace = true }
num-traits = "0.2.14"
Expand Down Expand Up @@ -173,11 +173,11 @@ tonic-build = { version = "0.12.3" }

# Sidekiq
# Todo: the default `rss-stats` feature has a dependency that currently can't be satisfied (memchr: ~2.3)
rusty-sidekiq = { version = "0.11.0", default-features = false }
rusty-sidekiq = { version = "0.12.0", default-features = false }

# Testing
insta = { version = "1.39.0", features = ["toml", "filters"] }
rstest = { version = "0.23.0", default-features = false }
rstest = { version = "0.24.0", default-features = false }
testcontainers-modules = { version = "0.11.3" }
mockall = "0.13.0"

Expand All @@ -196,11 +196,11 @@ cfg-if = "1.0.0"
vergen = { version = "9.0.0" }
vergen-gitcl = { version = "1.0.0" }
reqwest = "0.12.8"
itertools = "0.13.0"
cargo-manifest = "0.15.0"
itertools = "0.14.0"
cargo-manifest = "0.18.0"
typed-builder = "0.20.0"
rand = "0.8.5"
thiserror = "2.0.0"
thiserror = "2.0.9"
uuid = { version = "1.10.0", features = ["v4", "serde"] }
chrono = { version = "0.4.34", features = ["serde"] }

Expand Down
3 changes: 1 addition & 2 deletions src/config/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ use crate::util::serde::default_true;
use ::tracing::warn;
use cfg_if::cfg_if;
use config::builder::DefaultState;
use config::{Config, ConfigBuilder, FileFormat};
use convert_case::Case;
use config::{Case, Config, ConfigBuilder, FileFormat};
use dotenvy::dotenv;
use serde_derive::{Deserialize, Serialize};
use serde_json::Value;
Expand Down

0 comments on commit fbaaef8

Please sign in to comment.