From 2efdabf585f9134bf9159d84e0d9e46d5c2e4e3a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 3 May 2024 01:10:01 +0000 Subject: [PATCH] fix(deps): update rust crate serde to 1.0.200 --- graphql/async_graphql/Cargo.lock | 8 ++++---- graphql/async_graphql/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/graphql/async_graphql/Cargo.lock b/graphql/async_graphql/Cargo.lock index a959e8551..73b6f380d 100644 --- a/graphql/async_graphql/Cargo.lock +++ b/graphql/async_graphql/Cargo.lock @@ -1309,18 +1309,18 @@ dependencies = [ [[package]] name = "serde" -version = "1.0.195" +version = "1.0.200" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "63261df402c67811e9ac6def069e4786148c4563f4b50fd4bf30aa370d626b02" +checksum = "ddc6f9cc94d67c0e21aaf7eda3a010fd3af78ebf6e096aa6e2e13c79749cce4f" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.195" +version = "1.0.200" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "46fe8f8603d81ba86327b23a2e9cdf49e1255fb94a4c5f297f6ee0547178ea2c" +checksum = "856f046b9400cee3c8c94ed572ecdb752444c24528c035cd35882aad6f492bcb" dependencies = [ "proc-macro2", "quote", diff --git a/graphql/async_graphql/Cargo.toml b/graphql/async_graphql/Cargo.toml index d40969b68..1f17e731d 100644 --- a/graphql/async_graphql/Cargo.toml +++ b/graphql/async_graphql/Cargo.toml @@ -10,5 +10,5 @@ async-graphql-axum = "7.0.3" axum = "0.7.5" tokio = { version = "1", features = ["macros", "rt-multi-thread", "net", "parking_lot"] } reqwest = { version = "0.12.4", features = ["json"] } -serde = "1" +serde = "1.0.200" serde_json = "1"