From 91812f4695b800a5254a3c583d3e562b0c3434a7 Mon Sep 17 00:00:00 2001 From: Ethan Girouard Date: Fri, 10 May 2024 10:32:19 -0400 Subject: [PATCH] Fix misspelling of "version" for serde --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 48f3b78..d9b7338 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,7 +21,7 @@ icondata = { version = "0.3.0" } dotenv = { version = "0.15.0", optional = true } diesel = { version = "2.1.4", features = ["postgres", "r2d2", "time"], optional = true } lazy_static = { version = "1.4.0", optional = true } -serde = { versions = "1.0.195", features = ["derive"] } +serde = { version = "1.0.195", features = ["derive"] } openssl = { version = "0.10.63", optional = true } time = { version = "0.3.34", features = ["serde"] } diesel_migrations = { version = "2.1.0", optional = true }