From daffb5ab22a8539d6fb7e71302a22da45214fad7 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sat, 17 Jul 2021 10:11:08 +0300 Subject: chore: sort dependencies in Cargo.toml alphabetically This makes it easier to read and find them. Sponsored-by: author --- Cargo.toml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 31bf875..9381363 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,12 +5,12 @@ authors = ["Lars Wirzenius "] edition = "2018" [dependencies] -warp = { version = "0.2", features = ["tls"] } -tokio = { version = "0.2", features = ["macros"] } -serde_yaml = "0.8" +anyhow = "1" +log = "0.4" +pretty_env_logger = "0.4" serde = { version = "1", features = ["derive"] } +serde_yaml = "0.8" structopt = "0.3" -anyhow = "1" thiserror = "1" -pretty_env_logger = "0.4" -log = "0.4" +tokio = { version = "0.2", features = ["macros"] } +warp = { version = "0.2", features = ["tls"] } -- cgit v1.2.1