feat: add storage backend

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2024-11-09 17:19:19 +01:00
parent ecc6d785e7
commit 4d37578c59
8 changed files with 162 additions and 5 deletions

View File

@@ -4,6 +4,8 @@ version = "0.1.0"
edition = "2021"
[dependencies]
nodata-storage.workspace = true
anyhow.workspace = true
tokio.workspace = true
tracing.workspace = true
@@ -12,6 +14,7 @@ clap.workspace = true
dotenv.workspace = true
axum.workspace = true
drift.workspace = true
uuid.workspace = true
serde = { version = "1.0.197", features = ["derive"] }
sqlx = { version = "0.7.3", features = [
@@ -21,7 +24,6 @@ sqlx = { version = "0.7.3", features = [
"uuid",
"time",
] }
uuid = { version = "1.7.0", features = ["v4"] }
tower-http = { version = "0.5.2", features = ["cors", "trace"] }
tokio-util = "0.7.11"
tonic.workspace = true