1
Fork 0
mirror of https://github.com/thegeneralist01/archivr synced 2026-07-22 03:05:32 +02:00

feat: add web server registry

This commit is contained in:
TheGeneralist 2026-06-01 22:47:00 +02:00
parent 6390853c7b
commit 1634026e5b
Signed by: thegeneralist01
SSH key fingerprint: SHA256:pp9qddbCNmVNoSjevdvQvM5z0DHN7LTa8qBMbcMq/R4
6 changed files with 753 additions and 6 deletions

View file

@ -2,6 +2,7 @@
members = [
"crates/archivr-core",
"crates/archivr-cli",
"crates/archivr-server",
]
resolver = "2"
@ -11,11 +12,18 @@ edition = "2024"
[workspace.dependencies]
anyhow = "1.0.100"
axum = "0.7.9"
chrono = "0.4.42"
clap = { version = "4.5.48", features = ["derive"] }
hex = "0.4.3"
regex = "1.12.2"
rusqlite = { version = "0.32.1", features = ["bundled"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.132"
sha3 = "0.10.8"
tempfile = "3.13.0"
tokio = { version = "1.41.1", features = ["macros", "rt-multi-thread", "net"] }
toml = "0.8.19"
tower = "0.5.1"
tower-http = { version = "0.6.2", features = ["fs", "trace"] }
uuid = { version = "1.18.1", features = ["v4"] }