From 5288c8ca356d19f4aefc4c3523155577bae6b3da Mon Sep 17 00:00:00 2001 From: Christian Schwarz Date: Tue, 7 Jan 2025 14:54:51 +0100 Subject: [PATCH] hakari --- Cargo.lock | 2 ++ workspace_hack/Cargo.toml | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Cargo.lock b/Cargo.lock index 2842b3db48..a0a9b43a39 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7879,6 +7879,7 @@ dependencies = [ "chrono", "clap", "clap_builder", + "crossbeam-utils", "crypto-bigint 0.5.5", "der 0.7.8", "deranged", @@ -7895,6 +7896,7 @@ dependencies = [ "getrandom 0.2.11", "half", "hashbrown 0.14.5", + "hdrhistogram", "hex", "hmac", "hyper 0.14.30", diff --git a/workspace_hack/Cargo.toml b/workspace_hack/Cargo.toml index f7acb52e3c..0d0a173245 100644 --- a/workspace_hack/Cargo.toml +++ b/workspace_hack/Cargo.toml @@ -27,6 +27,7 @@ camino = { version = "1", default-features = false, features = ["serde1"] } chrono = { version = "0.4", default-features = false, features = ["clock", "serde", "wasmbind"] } clap = { version = "4", features = ["derive", "env", "string"] } clap_builder = { version = "4", default-features = false, features = ["color", "env", "help", "std", "string", "suggestions", "usage"] } +crossbeam-utils = { version = "0.8" } crypto-bigint = { version = "0.5", features = ["generic-array", "zeroize"] } der = { version = "0.7", default-features = false, features = ["oid", "pem", "std"] } deranged = { version = "0.3", default-features = false, features = ["powerfmt", "serde", "std"] } @@ -42,6 +43,7 @@ generic-array = { version = "0.14", default-features = false, features = ["more_ getrandom = { version = "0.2", default-features = false, features = ["std"] } half = { version = "2", default-features = false, features = ["num-traits"] } hashbrown = { version = "0.14", features = ["raw"] } +hdrhistogram = { version = "7" } hex = { version = "0.4", features = ["serde"] } hmac = { version = "0.12", default-features = false, features = ["reset"] } hyper-582f2526e08bb6a0 = { package = "hyper", version = "0.14", features = ["full"] } @@ -85,7 +87,7 @@ sync_wrapper = { version = "0.1", default-features = false, features = ["futures tikv-jemalloc-ctl = { version = "0.6", features = ["stats", "use_std"] } tikv-jemalloc-sys = { version = "0.6", features = ["profiling", "stats", "unprefixed_malloc_on_supported_platforms"] } time = { version = "0.3", features = ["macros", "serde-well-known"] } -tokio = { version = "1", features = ["full", "test-util"] } +tokio = { version = "1", features = ["full", "test-util", "tracing"] } tokio-rustls = { version = "0.26", default-features = false, features = ["logging", "ring", "tls12"] } tokio-stream = { version = "0.1", features = ["net"] } tokio-util = { version = "0.7", features = ["codec", "compat", "io", "rt"] }