From 2d57a40467e383b7ca960f5ffc8a2a51b9e94710 Mon Sep 17 00:00:00 2001 From: Stefan Bossbaly Date: Mon, 7 Oct 2024 16:33:18 -0400 Subject: [PATCH] Update dependencies (#75) name old req compatible latest new req ==== ======= ========== ====== ======= reqwest 0.12.7 0.12.8 0.12.8 0.12.8 thiserror 1.0.63 1.0.64 1.0.64 1.0.64 once_cell 1.20.0 1.20.2 1.20.2 1.20.2 Co-authored-by: StefanBossbaly <828855+StefanBossbaly@users.noreply.github.com> --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 18af935..4e73b9d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,18 +18,18 @@ include = [ [dependencies] chrono = "0.4.38" -reqwest = { version = "0.12.7", features = ["json"] } +reqwest = { version = "0.12.8", features = ["json"] } serde_json = "1.0.128" serde = { version = "1.0.210", features = ["derive"] } strum = { version = "0.26", features = ["derive"] } -thiserror = "1.0.63" +thiserror = "1.0.64" [dev-dependencies] mockito = "1.5.0" tokio = { version = "1.40.0", features = ["macros", "rt-multi-thread"] } gtfs-structures = "0.41.3" geojson = "0.24.1" -once_cell = "1.20.0" +once_cell = "1.20.2" serde_path_to_error = "0.1.16" [[example]]