Replace document_id with relative path

This commit is contained in:
Andras Schmelczer 2024-12-14 14:59:29 +00:00
parent 476c0ed672
commit fe7ff5349d
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
11 changed files with 83 additions and 270 deletions

View file

@ -11,16 +11,15 @@ serde = {workspace = true}
thiserror = {workspace = true}
anyhow = {workspace = true}
log = {workspace = true}
uuid = {workspace = true}
axum = { version = "0.7.9", features = ["ws", "macros"]}
tokio = { version = "1.42.0", features = ["full"]}
tracing-subscriber = "0.3.19"
serde_yaml = "0.9.34"
sqlx = { version = "0.8.2", features = ["sqlite", "runtime-tokio", "uuid", "chrono"] }
sqlx = { version = "0.8.2", features = ["sqlite", "runtime-tokio", "chrono"] }
chrono = { version = "0.4.38", features = ["serde"] }
aide = { version = "0.13.4", features = ["axum", "axum-ws", "scalar", "axum-headers"] }
schemars = { version = "0.8.21", features = ["chrono", "uuid1"] }
schemars = { version = "0.8.21", features = ["chrono"] }
rand = "0.8.5"
axum-extra = { version = "0.9.6", features = ["typed-header"] }
tower-http = { version = "0.6.1", features = ["cors"] }