feat: use postcard for redis serde (#6956)

* redo error handling in xredis

* give proper types to metadata fields

* add round-trip tests

* inline loader enum metadata fields

* postcard roundtrips

* prepare

* bump redis key version

* serde-binhum

* clippy

* fix

* fix frontend checking existence of component fields rather than non-null-ness

* prepare
This commit is contained in:
aecsocket
2026-08-05 10:36:05 +00:00
committed by GitHub
parent cc53d9a6f8
commit 5148e8ec35
70 changed files with 1713 additions and 646 deletions
+2 -1
View File
@@ -10,8 +10,10 @@ ariadne = { workspace = true }
chrono = { workspace = true }
dashmap = { workspace = true }
deadpool-redis = { workspace = true, features = ["cluster-async"] }
eyre = { workspace = true }
futures = { workspace = true }
lz4_flex = { workspace = true }
postcard = { workspace = true }
prometheus = { workspace = true }
redis = { workspace = true, features = [
"ahash",
@@ -20,7 +22,6 @@ redis = { workspace = true, features = [
"tokio-comp"
] }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
thiserror = { workspace = true }
tokio = { workspace = true, features = ["rt", "sync", "time"] }
tracing = { workspace = true }