forked from Deuxfleurs/garage
Fix tests
This commit is contained in:
parent
2cad656a03
commit
381eb9a5a1
3 changed files with 5 additions and 22 deletions
22
Cargo.lock
generated
22
Cargo.lock
generated
|
@ -618,16 +618,6 @@ dependencies = [
|
|||
"subtle",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "crypto-mac"
|
||||
version = "0.10.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "bff07008ec701e8028e2ceb8f83f0e4274ee62bd2dbdc4fefff2e9a91824081a"
|
||||
dependencies = [
|
||||
"generic-array",
|
||||
"subtle",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "crypto-mac"
|
||||
version = "0.11.1"
|
||||
|
@ -1006,7 +996,7 @@ dependencies = [
|
|||
"garage_util 0.7.0",
|
||||
"garage_web",
|
||||
"hex",
|
||||
"hmac 0.10.1",
|
||||
"hmac 0.12.1",
|
||||
"http",
|
||||
"hyper",
|
||||
"kuska-sodiumoxide",
|
||||
|
@ -1510,16 +1500,6 @@ dependencies = [
|
|||
"itertools 0.4.19",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "hmac"
|
||||
version = "0.10.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "c1441c6b1e930e2817404b5046f1f989899143a12bf92de603b69f4e0aee1e15"
|
||||
dependencies = [
|
||||
"crypto-mac 0.10.1",
|
||||
"digest 0.9.0",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "hmac"
|
||||
version = "0.11.0"
|
||||
|
|
|
@ -63,7 +63,7 @@ prometheus = "0.13"
|
|||
aws-sdk-s3 = "0.8"
|
||||
chrono = "0.4"
|
||||
http = "0.2"
|
||||
hmac = "0.10"
|
||||
hmac = "0.12"
|
||||
hyper = { version = "0.14", features = ["client", "http1", "runtime"] }
|
||||
sha2 = "0.10"
|
||||
|
||||
|
|
|
@ -3,5 +3,8 @@ mod common;
|
|||
|
||||
mod admin;
|
||||
mod bucket;
|
||||
|
||||
#[cfg(feature="k2v")]
|
||||
mod k2v;
|
||||
|
||||
mod s3;
|
||||
|
|
Loading…
Reference in a new issue