Skip to content

Commit

Permalink
chore: sort deps in Cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
oblique committed Sep 17, 2023
1 parent 7e9ba4d commit 5af9db6
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,33 +15,33 @@ exclude = [".github", "rfcs"]
repository = "https://github.com/oblique/async-tftp-rs"

[dependencies]
thiserror = "1.0.37"
bytes = "1.3.0"
log = "0.4.17"
nom = "7.1.1"
num-derive = "0.3.3"
num-traits = "0.2.15"
log = "0.4.17"
thiserror = "1.0.37"

async-trait = "0.1.59"
async-executor = "1.5.0"
async-io = "1.12.0"
async-lock = "2.6.0"
async-executor = "1.5.0"
async-trait = "0.1.59"
blocking = "1.3.0"
futures-lite = "1.12.0"

[dev-dependencies]
anyhow = "1.0.66"
structopt = "0.3.26"
rand = { version = "0.8.5", features = ["small_rng"] }
async-channel = "1.8.0"
fern = "0.6.1"
md5 = "0.7.0"
rand = { version = "0.8.5", features = ["small_rng"] }
structopt = "0.3.26"
tempfile = "3.3.0"
fern = "0.6.1"
async-channel = "1.8.0"

# deps for tftpd-targz.rs
async-compression = { version = "0.3.15", features = ["gzip", "futures-io"] }
async-std = { version = "1.12.0", features = ["unstable"] }
async-tar = "0.4.2"
async-compression = { version = "0.3.15", features = ["gzip", "futures-io"] }

[features]
external-client-tests = []

0 comments on commit 5af9db6

Please sign in to comment.