From 09d80b6afa26a100118ef53d8cf4e13679a42c66 Mon Sep 17 00:00:00 2001 From: Bram Dingelstad Date: Sat, 16 Mar 2024 15:29:20 +0100 Subject: [PATCH] chore: unified the serde version in the project --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c2452b8..53423ea 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,8 +17,8 @@ lazy_static = "1.4.0" log = "0.4.20" regex = "1.7.1" reqwest = { version = "0.11.14", features = ["json"] } -serde = { version = "1.0.152", features = ["derive"] } -serde_json = "1.0.91" +serde = { version = "^1.0", features = ["derive"], default-features = false } +serde_json = { version = "^1.0", features = ["raw_value"], default-features = false } [dev-dependencies] tokio = { version = "1.28.1", features = ["macros"] }