From 7cde3bb2de1f0558c17e91da7755cdcf5d4b32e2 Mon Sep 17 00:00:00 2001 From: d-k-bo <47948262+d-k-bo@users.noreply.github.com> Date: Mon, 25 Mar 2024 17:17:00 +0100 Subject: [PATCH] Update dependencies --- CHANGELOG.md | 6 +++++- Cargo.toml | 6 +++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index feea3c1..f41db2b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,11 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Changed + +- BREAKING: Update `reqwest` to v0.12.x which is based on `hyper`, `http` and `http-body` v1 + ## [0.2.0] - 2023-10-14 ### Changed -- BREAKING: use `i64`for timestamps +- BREAKING: use `i64` for timestamps - Make timestamp parsing more resilient by accepting both strings and integers - BREAKING: Deserialize maybe-empty strings as `Option` diff --git a/Cargo.toml b/Cargo.toml index e4e7538..4680a99 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,11 +17,11 @@ native-tls = ["reqwest/native-tls"] rustls-tls = ["reqwest/rustls-tls"] [dependencies] -reqwest = { version = "0.11.22", default-features = false, features = ["json"] } -serde = { version = "1.0.188", features = ["derive"] } +reqwest = { version = "0.12.2", default-features = false, features = ["json"] } +serde = { version = "1.0.197", features = ["derive"] } [dev-dependencies] -tokio = { version = "1.32.0", features = ["macros", "rt"] } +tokio = { version = "1.36.0", features = ["macros", "rt"] } # see https://stackoverflow.com/a/61417700/14750360 [package.metadata.docs.rs]