performance improvements #342

Merged
lx merged 21 commits from lx-perf-improvements into main 2022-09-12 14:38:44 +00:00
3 changed files with 5 additions and 22 deletions
Showing only changes of commit 381eb9a5a1 - Show all commits

22
Cargo.lock generated
View File

@ -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"

View File

@ -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"

View File

@ -3,5 +3,8 @@ mod common;
mod admin;
mod bucket;
#[cfg(feature="k2v")]
mod k2v;
mod s3;