From 235de5be5d53e746bcdf0da9f04a980be601a433 Mon Sep 17 00:00:00 2001 From: John Nunley Date: Wed, 20 Sep 2023 20:29:36 -0700 Subject: [PATCH] Alphabetize dependencies This helps cargo-add work better Signed-off-by: John Nunley --- Cargo.toml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index abbe9ea..900323d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,17 +18,16 @@ readme = "README.md" edition = "2018" [dependencies] -httparse = "1.3.4" -http-types = { version = "2.9.0", default-features = false } -futures-core = "0.3.8" -log = "0.4.11" -pin-project = "1.0.2" async-channel = "1.5.1" async-dup = "1.2.2" -futures-lite = "1.13.0" -async-io = "1.13.0" async-global-executor = "2.3.1" +async-io = "1.13.0" +futures-lite = "1.13.0" +http-types = { version = "2.9.0", default-features = false } +httparse = "1.3.4" +log = "0.4.11" +pin-project = "1.0.2" [dev-dependencies] -pretty_assertions = "0.6.1" async-std = { version = "1.7.0", features = ["attributes"] } +pretty_assertions = "0.6.1"