From a5f74e05d49ad938c3f0854dc9b1d203a570a8d9 Mon Sep 17 00:00:00 2001 From: jakka Date: Wed, 17 Sep 2025 21:25:08 +0300 Subject: moved to async http client and serde --- Cargo.toml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index c9ba256..78dee9b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,8 +4,11 @@ version = "0.1.0" edition = "2024" [dependencies] -musli = { version = "0.0.145", features = ["json"] } -strum_macros = "0.27.2" +reqwest = { version = "0.12.23", features = ["json", "stream"] } +serde = { version = "1.0.225", features = ["derive"] } +serde_json = "1.0.145" +serde_repr = "0.1.20" thiserror = "2.0.16" -ureq = "3.1.0" +tokio = { version = "1.47.1", features = ["rt", "macros"] } +tokio-util = "0.7.16" urlencoding = "2.1.3" -- cgit v1.3.1