From 21d2a4fa3275ca5b813ebb4105a2ec9f75b2ddef Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Fri, 11 Oct 2024 11:58:22 +0200 Subject: [PATCH] Alphabetize dependencies --- Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index fd2e6af..fdb781b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,8 +13,8 @@ rust-version = "1.63" exclude = ["/.github", "/examples", "/scripts"] [dependencies] -tokio = "1.0" rustls = { version = "0.23.5", default-features = false, features = ["std"] } +tokio = "1.0" [features] default = ["logging", "tls12", "aws_lc_rs"] @@ -28,9 +28,9 @@ tls12 = ["rustls/tls12"] [dev-dependencies] argh = "0.1.1" -rcgen = { version = "0.13", features = ["pem"] } -tokio = { version = "1.0", features = ["full"] } futures-util = "0.3.1" lazy_static = "1.1" -webpki-roots = "0.26" +rcgen = { version = "0.13", features = ["pem"] } rustls-pemfile = "2" +tokio = { version = "1.0", features = ["full"] } +webpki-roots = "0.26"