summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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"] }