Compare commits

..

1 commit

Author SHA1 Message Date
0f04becd0f
feat: Add user resource w/database as storage 2025-01-14 14:01:55 +01:00
3 changed files with 3 additions and 0 deletions

1
Cargo.lock generated
View file

@ -1844,6 +1844,7 @@ version = "0.2.0"
dependencies = [
"anyhow",
"clap",
"futures",
"instrumentation",
"progenitor",
"reqwest",

View file

@ -32,6 +32,7 @@ clap = { version = "4.5.23", features = [
"string",
] }
dropshot = "0.15.1"
futures = "0.3"
http = "1.2.0"
once_cell = "1.20.2"
progenitor = "0.8.0"

View file

@ -7,6 +7,7 @@ version.workspace = true
[dependencies]
anyhow.workspace = true
clap.workspace = true
futures.workspace = true
instrumentation = { path = "../instrumentation" }
progenitor.workspace = true
reqwest.workspace = true