Skip to content

Commit 7701be2

Browse files
committed
chore: Update dependencies
1 parent bc8eed8 commit 7701be2

File tree

2 files changed

+19
-21
lines changed

2 files changed

+19
-21
lines changed

Cargo.toml

Lines changed: 18 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -8,39 +8,37 @@ readme = "README.md"
88

99
description = "Executor agnostic async TFTP implementation"
1010
categories = ["network-programming"]
11-
keywords = [
12-
"tftp", "tftpd", "async-std", "tokio", "smol",
13-
]
11+
keywords = ["tftp", "tftpd", "async-std", "tokio", "smol"]
1412
exclude = [".github", "rfcs"]
1513
repository = "https://github.com/oblique/async-tftp-rs"
1614

1715
[dependencies]
18-
bytes = "1.3.0"
19-
log = "0.4.17"
20-
nom = "7.1.1"
16+
bytes = "1.5.0"
17+
log = "0.4.20"
18+
nom = "7.1.3"
2119
num-derive = "0.3.3"
22-
num-traits = "0.2.15"
23-
thiserror = "1.0.37"
20+
num-traits = "0.2.16"
21+
thiserror = "1.0.48"
2422

25-
async-executor = "1.5.0"
26-
async-io = "1.12.0"
27-
async-lock = "2.6.0"
28-
async-trait = "0.1.59"
29-
blocking = "1.3.0"
30-
futures-lite = "1.12.0"
23+
async-executor = "1.5.1"
24+
async-io = "1.13.0"
25+
async-lock = "2.8.0"
26+
async-trait = "0.1.73"
27+
blocking = "1.3.1"
28+
futures-lite = "1.13.0"
3129

3230
[dev-dependencies]
33-
anyhow = "1.0.66"
34-
async-channel = "1.8.0"
35-
fern = "0.6.1"
31+
anyhow = "1.0.75"
32+
async-channel = "1.9.0"
33+
fern = "0.6.2"
3634
md5 = "0.7.0"
3735
rand = { version = "0.8.5", features = ["small_rng"] }
3836
structopt = "0.3.26"
39-
tempfile = "3.3.0"
40-
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
37+
tempfile = "3.8.0"
38+
tokio = { version = "1.32.0", features = ["rt-multi-thread", "macros"] }
4139

4240
# deps for tftpd-targz.rs
43-
async-compression = { version = "0.3.15", features = ["gzip", "futures-io"] }
41+
async-compression = { version = "0.4.3", features = ["gzip", "futures-io"] }
4442
async-std = { version = "1.12.0", features = ["unstable"] }
4543
async-tar = "0.4.2"
4644

examples/tftpd-dir.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use anyhow::Result;
22
use async_tftp::server::TftpServerBuilder;
33

44
#[tokio::main]
5-
fn main() -> Result<()> {
5+
async fn main() -> Result<()> {
66
fern::Dispatch::new()
77
.level(log::LevelFilter::Info)
88
.level_for("async_tftp", log::LevelFilter::Trace)

0 commit comments

Comments
 (0)