Skip to content

Commit 1f15a68

Browse files
committed
more crate bumps
1 parent de41f45 commit 1f15a68

File tree

3 files changed

+48
-56
lines changed

3 files changed

+48
-56
lines changed

Cargo.lock

Lines changed: 37 additions & 48 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ futures-util = { version = "0.3.30", default-features = false, features = [
2222
jrpc = "0.4.1"
2323
serde_json = "1.0.115"
2424
chrono = "0.4.37"
25-
chrono-tz = "0.8.6"
25+
chrono-tz = "0.10.3"
2626
pyth-sdk = "0.8.0"
2727
pyth-sdk-solana = "0.10.4"
2828
solana-account-decoder = "2.2.1"
@@ -31,14 +31,14 @@ solana-pubkey = "2.2.1"
3131
solana-sdk = "2.2.1"
3232
solana-transaction-status = "2.2.1"
3333
bincode = { version = "2.0.1", features = ["serde"] }
34-
config = "0.14.0"
35-
thiserror = "1.0.58"
34+
config = "0.15.11"
35+
thiserror = "2.0.12"
3636
clap = { version = "4.5.4", features = ["derive"] }
3737
humantime-serde = "1.1.1"
38-
serde-this-or-that = "0.4.2"
39-
prometheus-client = "0.22.2"
38+
serde-this-or-that = "0.5.0"
39+
prometheus-client = "0.23.1"
4040
lazy_static = "1.4.0"
41-
winnow = "0.6.5"
41+
winnow = "0.7.7"
4242
proptest = "1.4.0"
4343
reqwest = { version = "0.12.0", features = ["json"] }
4444
smol_str = {version="0.3.2", features=["serde"]}

src/agent/legacy_schedule.rs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@ use {
1515
Utc,
1616
Weekday,
1717
},
18-
chrono_tz::Tz,
18+
chrono_tz::{
19+
ParseError,
20+
Tz,
21+
},
1922
lazy_static::lazy_static,
2023
std::str::FromStr,
2124
};
@@ -89,7 +92,7 @@ impl FromStr for LegacySchedule {
8992
let tz: Tz = tz_str
9093
.trim()
9194
.parse()
92-
.map_err(|e: String| anyhow!(e))
95+
.map_err(|e: ParseError| anyhow!(e))
9396
.context(format!("Could parse timezone from {:?}", tz_str))?;
9497

9598
let mut weekday_schedules = Vec::with_capacity(7);

0 commit comments

Comments
 (0)