From f66893fbda07e85c351e597a0ba2dced6eb91e8a Mon Sep 17 00:00:00 2001 From: David Pedersen Date: Fri, 10 Jun 2022 16:57:53 +0200 Subject: [PATCH] Add missing `version` for `serde_json` in `Cargo.toml` No idea how that went away --- axum/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/axum/Cargo.toml b/axum/Cargo.toml index c685bf3e..c5de4abf 100644 --- a/axum/Cargo.toml +++ b/axum/Cargo.toml @@ -50,7 +50,7 @@ tower-service = "0.3" base64 = { version = "0.13", optional = true } headers = { version = "0.3", optional = true } multer = { version = "2.0.0", optional = true } -serde_json = { features = ["raw_value"], optional = true } +serde_json = { version = "1.0", features = ["raw_value"], optional = true } serde_urlencoded = { version = "0.7", optional = true } sha-1 = { version = "0.10", optional = true } tokio-tungstenite = { version = "0.17", optional = true }