From db79adc13bbce08f101b7eb7a76967b5deceeab1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Frosteg=C3=A5rd?= Date: Mon, 11 Apr 2022 01:15:26 +0200 Subject: [PATCH] http load test: exclusively use TLS 1.3 --- aquatic_http_load_test/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aquatic_http_load_test/Cargo.toml b/aquatic_http_load_test/Cargo.toml index 861505c..30df0a6 100644 --- a/aquatic_http_load_test/Cargo.toml +++ b/aquatic_http_load_test/Cargo.toml @@ -26,7 +26,7 @@ log = "0.4" mimalloc = { version = "0.1", default-features = false } rand = { version = "0.8", features = ["small_rng"] } rand_distr = "0.4" -rustls = { version = "0.20", features = ["dangerous_configuration"] } +rustls = { version = "0.20", default-features = false, features = ["logging", "dangerous_configuration"] } # TLS 1.2 disabled serde = { version = "1", features = ["derive"] } [dev-dependencies]