summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorjakka <jakka@jakka.su>2025-09-17 21:25:08 +0300
committerjakka <jakka@jakka.su>2025-09-17 21:25:08 +0300
commita5f74e05d49ad938c3f0854dc9b1d203a570a8d9 (patch)
tree76251488c9c05c6319999ef50f21a0ccd2fbf18a /Cargo.toml
parentd07a6af4563c0fde224aa630fb2d9feec01579f2 (diff)
moved to async http client and serde
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml9
1 files changed, 6 insertions, 3 deletions
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"