Add integrity check command

This commit is contained in:
Lambda 2024-09-22 10:00:59 +00:00
parent d1370f9834
commit d93d16d7a3
6 changed files with 235 additions and 2 deletions

9
Cargo.lock generated
View file

@ -966,6 +966,7 @@ dependencies = [
"thread_local",
"tikv-jemallocator",
"tokio",
"tokio-util",
"toml",
"tower 0.5.2",
"tower-http",
@ -1002,6 +1003,12 @@ version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
[[package]]
name = "hashbrown"
version = "0.14.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
[[package]]
name = "hashbrown"
version = "0.15.2"
@ -3420,6 +3427,8 @@ dependencies = [
"bytes",
"futures-core",
"futures-sink",
"futures-util",
"hashbrown 0.14.5",
"pin-project-lite",
"tokio",
]