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