From 260142445aca752a07b733de653f9627d3af8fd2 Mon Sep 17 00:00:00 2001 From: Ethan Girouard Date: Wed, 30 Jul 2025 19:08:09 -0400 Subject: [PATCH] Add serde --- Cargo.lock | 1 + Cargo.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 9e20218..f448519 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1261,6 +1261,7 @@ dependencies = [ "futures-util", "nanodb", "rspotify", + "serde", "tokio", ] diff --git a/Cargo.toml b/Cargo.toml index a2e6c2e..1866c44 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,4 +8,5 @@ dotenvy = "0.15.7" futures-util = "0.3.31" nanodb = "0.4.5" rspotify = { version = "0.14.0", default-features = false, features = ["cli", "client-reqwest", "reqwest-rustls-tls", "webbrowser"] } +serde = "1.0.219" tokio = { version = "1.45.1", features = ["macros", "rt-multi-thread"] }