summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2021-07-17 10:11:08 +0300
committerLars Wirzenius <liw@liw.fi>2021-07-17 10:23:17 +0300
commitdaffb5ab22a8539d6fb7e71302a22da45214fad7 (patch)
tree5f20bdac2e3b7f56955626bded7f0699266d7650
parent0b81e38051ff0e9593e69545df217303c588f510 (diff)
downloadewww-daffb5ab22a8539d6fb7e71302a22da45214fad7.tar.gz
chore: sort dependencies in Cargo.toml alphabetically
This makes it easier to read and find them. Sponsored-by: author
-rw-r--r--Cargo.toml12
1 files 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 <liw@liw.fi>"]
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"] }