Sort dependencies in Cargo.toml files

This commit is contained in:
Joakim Frostegård 2022-02-20 01:44:34 +01:00
parent 903010dbe1
commit 3785e57513
9 changed files with 29 additions and 20 deletions

View file

@ -17,12 +17,14 @@ name = "aquatic_udp"
cpu-pinning = ["aquatic_common/cpu-pinning"]
[dependencies]
anyhow = "1"
aquatic_cli_helpers = "0.1.0"
aquatic_common = "0.1.0"
aquatic_toml_config = "0.1.0"
aquatic_udp_protocol = "0.1.0"
chrono = "0.4"
anyhow = "1"
cfg-if = "1"
chrono = "0.4"
crossbeam-channel = "0.5"
hex = "0.4"
log = "0.4"
@ -31,11 +33,10 @@ mio = { version = "0.8", features = ["net", "os-poll"] }
num-format = "0.4"
rand = { version = "0.8", features = ["small_rng"] }
serde = { version = "1", features = ["derive"] }
slab = "0.4"
signal-hook = { version = "0.3" }
slab = "0.4"
socket2 = { version = "0.4", features = ["all"] }
tinytemplate = "1"
aquatic_toml_config = "0.1.0"
[dev-dependencies]
quickcheck = "1"