Merge branch 'lambda/check-integrity' into 'main'

Draft: Add integrity check command

See merge request matrix/grapevine!110
This commit is contained in:
Lambda 2025-05-05 00:31:27 +00:00
commit 5952251e2f
6 changed files with 374 additions and 4 deletions

View file

@ -94,6 +94,7 @@ axum = { version = "0.7.9", default-features = false, features = ["form", "http1
axum-extra = { version = "0.9.5", features = ["typed-header"] }
axum-server = { version = "0.7.2", features = ["tls-rustls-no-provider"] }
base64 = "0.22.1"
bstr = "1.12.0"
bytes = "1.10.1"
clap = { version = "4.5.34", default-features = false, features = ["std", "derive", "help", "usage", "error-context", "string", "wrap_help"] }
futures-util = { version = "0.3.31", default-features = false }
@ -135,6 +136,7 @@ thiserror = "2.0.12"
thread_local = "1.1.8"
tikv-jemallocator = { version = "0.6.0", features = ["unprefixed_malloc_on_supported_platforms"], optional = true }
tokio = { version = "1.44.1", features = ["fs", "macros", "signal", "sync"] }
tokio-util = { version = "0.7.12", features = ["rt"] }
toml = "0.8.20"
tower = { version = "0.5.2", features = ["util"] }
tower-http = { version = "0.6.2", features = ["add-extension", "cors", "sensitive-headers", "trace", "util"] }