From 2116659a1450067ca15d547afbd384cf26057106 Mon Sep 17 00:00:00 2001 From: Jacob Kiers Date: Wed, 4 Oct 2023 23:34:26 +0200 Subject: [PATCH] Sort dependencies Signed-off-by: Jacob Kiers --- Cargo.toml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index cbe70b8..87a1929 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,15 +16,14 @@ categories = ["web-programming"] exclude = [".*"] [dependencies] +byte_string = "1" +bytes = "1.1" +futures = "0.3" log = "0.4" pretty_env_logger = "0.4" serde = { version = "1.0", features = ["derive"] } serde_yaml = "0.9.21" -futures = "0.3" -tls-parser = "0.11" -url = "2.2.2" time = { version = "0.3.1", features = ["local-offset", "formatting"] } +tls-parser = "0.11" tokio = { version = "1.0", features = ["full"] } - -bytes = "1.1" -byte_string = "1" +url = "2.2.2"