Skip to content

Commit 896aa73

Browse files
committed
ci test
1 parent d1999b0 commit 896aa73

File tree

2 files changed

+15
-13
lines changed

2 files changed

+15
-13
lines changed

Cargo.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -13,24 +13,24 @@ default = ["serve_dir"]
1313
serve_dir = ["mime_guess", "tokio/fs"]
1414

1515
[dependencies]
16-
anyhow = "1.0.33"
17-
rustls = { version = "0.23.27" }
16+
anyhow = "1.0.98"
17+
rustls = { version = "0.23.31" }
1818
rustls-pemfile = { version = "2.2.0" }
1919
tokio-rustls = "0.26.2"
20-
tokio = { version = "1.47.0", features = ["io-util", "net", "time", "rt"] }
21-
mime = "0.3.16"
22-
uriparse = "0.6.3"
23-
percent-encoding = "2.1.0"
24-
futures-core = "0.3.7"
25-
log = "0.4.11"
20+
tokio = { version = "1.47.1", features = ["io-util", "net", "time", "rt"] }
21+
mime = "0.3.17"
22+
uriparse = "0.6.4"
23+
percent-encoding = "2.3.1"
24+
futures-core = "0.3.31"
25+
log = "0.4.27"
2626
webpki = "0.22.4"
27-
lazy_static = "1.4.0"
28-
mime_guess = { version = "2.0.3", optional = true }
27+
lazy_static = "1.5.0"
28+
mime_guess = { version = "2.0.5", optional = true }
2929

3030
[dev-dependencies]
3131
env_logger = "0.11.8"
32-
futures-util = "0.3.7"
33-
tokio = { version = "1.47.0", features = ["macros", "rt-multi-thread", "sync"] }
32+
futures-util = "0.3.31"
33+
tokio = { version = "1.47.1", features = ["macros", "rt-multi-thread", "sync"] }
3434

3535
[[example]]
3636
name = "serve_dir"

src/lib.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
#[macro_use]
22
extern crate log;
33

4+
// CI test
5+
46
use crate::util::opt_timeout;
5-
use anyhow::{bail, Context, Result};
7+
use anyhow::{Context, Result, bail};
68
use futures_core::future::BoxFuture;
79
use lazy_static::lazy_static;
810
use routing::RoutingNode;

0 commit comments

Comments
 (0)