feat: initial store implementation

This commit is contained in:
2025-03-19 20:51:07 -04:00
parent a25079c813
commit 7b2ebc5fe9
3 changed files with 123 additions and 1 deletions

View File

@@ -30,7 +30,12 @@ serde_json = "1.0.140"
shadow-rs = { version = "1.0.1", default-features = false }
snafu = "0.8.5"
strum = { version = "0.27.1", features = ["derive"] }
tokio = { version = "1.32.0", features = ["rt", "rt-multi-thread", "time"] }
tokio = { version = "1.32.0", features = [
"rt",
"rt-multi-thread",
"sync",
"time",
] }
tracing = "0.1.37"
tracing-appender = "0.2.3"
tracing-subscriber = "0.3.17"