summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorjakka <jakka@jakka.su>2025-09-13 21:27:26 +0300
committerjakka <jakka@jakka.su>2025-09-13 21:27:26 +0300
commitdfab573a0de95ff95e24653901e0ddecdd7c5459 (patch)
treecaad49784baba7b2da92c8643d95953ca8d3bca1 /Cargo.toml
parentd7cdf6cd80fb25deb4bbcb7af37e569c404bd0c0 (diff)
json de/serialization via serdeserde
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml7
1 files changed, 4 insertions, 3 deletions
diff --git a/Cargo.toml b/Cargo.toml
index c9ba256..90dea2d 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -4,8 +4,9 @@ version = "0.1.0"
edition = "2024"
[dependencies]
-musli = { version = "0.0.145", features = ["json"] }
-strum_macros = "0.27.2"
+serde = { version = "1.0.219", features = ["derive"] }
+serde_json = { version = "1.0.143", features = ["alloc"] }
+serde_repr = "0.1.20"
thiserror = "2.0.16"
-ureq = "3.1.0"
+ureq = { version = "3.1.0", features = ["json"] }
urlencoding = "2.1.3"