From eb6737abd89fe821502a6ff342b5298bf3affd70 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 11 Jul 2023 11:05:04 +0000 Subject: [PATCH] build(deps): update serde_with requirement from 2.0.1 to 3.0.0 in /api Updates the requirements on [serde_with](https://github.com/jonasbb/serde_with) to permit the latest version. - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v2.0.1...v3.0.0) --- updated-dependencies: - dependency-name: serde_with dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- api/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/Cargo.toml b/api/Cargo.toml index ef65c427..fa63ce57 100644 --- a/api/Cargo.toml +++ b/api/Cargo.toml @@ -22,7 +22,7 @@ regex = "1.6.0" reqwest = { version = "0.11.12", default-features = false, features = ["blocking", "gzip", "json", "multipart", "native-tls-vendored"] } serde = { version = "1.0.147", features = ["derive"] } serde_json = "1.0.87" -serde_with = "2.0.1" +serde_with = "3.0.0" thiserror = "1.0.37" url = "2.3.1"