From 46d321c969b0ab9e6044e7955227309f83887568 Mon Sep 17 00:00:00 2001 From: nathan Date: Mon, 18 Dec 2023 03:28:01 +0800 Subject: [PATCH] chore: remove workspace deps on admin frontend --- admin_frontend/Cargo.toml | 4 ++-- libs/infra/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/admin_frontend/Cargo.toml b/admin_frontend/Cargo.toml index 3e5ef362..23961df3 100644 --- a/admin_frontend/Cargo.toml +++ b/admin_frontend/Cargo.toml @@ -15,8 +15,8 @@ axum = {version = "0.6.20", features = ["json"]} tokio = { version = "1.32.0", features = ["rt-multi-thread", "macros"] } askama = "0.12.1" axum-extra = { version = "0.8.0", features = ["cookie"] } -serde.workspace = true -serde_json.workspace = true +serde = { version = "1.0.130", features = ["derive"] } +serde_json = "1.0.108" redis = { version = "0.23.3", features = [ "aio", "tokio-comp", "connection-manager"] } uuid = { version = "1.4.1", features = ["v4"] } dotenv = "0.15.0" diff --git a/libs/infra/Cargo.toml b/libs/infra/Cargo.toml index f1e35b8d..a99dfd4d 100644 --- a/libs/infra/Cargo.toml +++ b/libs/infra/Cargo.toml @@ -9,4 +9,4 @@ edition = "2021" reqwest = { version = "0.11.20", default-features = false } anyhow = "1.0.75" serde.workspace = true -serde_json ="1.0.105" \ No newline at end of file +serde_json.workspace = true \ No newline at end of file