Skip to content

Commit b076b11

Browse files
committed
build(deps): bump patch and minor dependency versions
1 parent 569fca5 commit b076b11

2 files changed

Lines changed: 24 additions & 24 deletions

File tree

Cargo.toml

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -18,47 +18,47 @@ askama = { version = "0.14.0", default-features = false, features = [
1818
"derive",
1919
] }
2020
cached = { version = "0.59.0", features = ["async"] }
21-
clap = { version = "4.4.11", default-features = false, features = [
21+
clap = { version = "4.6.0", default-features = false, features = [
2222
"std",
2323
"env",
2424
"derive",
2525
] }
26-
regex = "1.10.2"
27-
serde = { version = "1.0.193", features = ["derive"] }
28-
cookie = "0.18.0"
29-
futures-lite = "2.2.0"
26+
regex = "1.12.3"
27+
serde = { version = "1.0.228", features = ["derive"] }
28+
cookie = "0.18.1"
29+
futures-lite = "2.6.1"
3030
hyper = { version = "0.14.31", features = ["full"] }
31-
percent-encoding = "2.3.1"
31+
percent-encoding = "2.3.2"
3232
route-recognizer = "0.3.1"
33-
serde_json = "1.0.133"
34-
tokio = { version = "1.44.2", features = ["full"] }
35-
time = { version = "0.3.31", features = ["local-offset"] }
36-
url = "2.5.0"
37-
rust-embed = { version = "8.1.0", features = ["include-exclude"] }
38-
libflate = "2.0.0"
39-
brotli = { version = "7.0.0", features = ["std"] }
40-
toml = "0.8.8"
41-
serde_yaml = "0.9.29"
42-
build_html = "2.4.0"
43-
uuid = { version = "1.6.1", features = ["v4"] }
33+
serde_json = "1.0.149"
34+
tokio = { version = "1.51.1", features = ["full"] }
35+
time = { version = "0.3.47", features = ["local-offset"] }
36+
url = "2.5.8"
37+
rust-embed = { version = "8.11.0", features = ["include-exclude"] }
38+
libflate = "2.2.1"
39+
brotli = { version = "8.0.2", features = ["std"] }
40+
toml = "1.1.2"
41+
serde_yaml_ng = "0.10.0"
42+
build_html = "2.7.0"
43+
uuid = { version = "1.23.0", features = ["v4"] }
4444
base64 = "0.22.1"
45-
fastrand = "2.0.1"
46-
log = "0.4.20"
45+
fastrand = "2.4.1"
46+
log = "0.4.29"
4747
pretty_env_logger = "0.5.0"
4848
dotenvy = "0.15.7"
4949
rss = "2.0.12"
50-
arc-swap = "1.7.1"
51-
serde_json_path = "0.7.1"
50+
arc-swap = "1.9.1"
51+
serde_json_path = "0.7.2"
5252
async-recursion = "1.1.1"
5353
pulldown-cmark = { version = "0.13.3", features = ["simd", "html"], default-features = false }
5454
tegen = "0.1.4"
5555
serde_urlencoded = "0.7.1"
56-
chrono = { version = "0.4.39", default-features = false, features = ["std"] }
56+
chrono = { version = "0.4.44", default-features = false, features = ["std"] }
5757
htmlescape = "0.3.1"
5858
bincode = "1.3.3"
5959
base2048 = "2.0.2"
6060
revision = "0.17.0"
61-
fake_user_agent = "0.2.2"
61+
fake_user_agent = "0.2.3"
6262
wreq = { version = "6.0.0-rc.28", features = ["brotli", "gzip", "deflate", "zstd", "json", "stream", "socks"] }
6363
wreq-util = { version = "3.0.0-rc.10" }
6464

src/instance_info.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ fn info_json() -> Result<Response<Body>, Error> {
5151
}
5252

5353
fn info_yaml() -> Result<Response<Body>, Error> {
54-
if let Ok(body) = serde_yaml::to_string(&*INSTANCE_INFO) {
54+
if let Ok(body) = serde_yaml_ng::to_string(&*INSTANCE_INFO) {
5555
// We can use `application/yaml` as media type, though there is no guarantee
5656
// that browsers will honor it. But we'll do it anyway. See:
5757
// https://github.com/ietf-wg-httpapi/mediatypes/blob/main/draft-ietf-httpapi-yaml-mediatypes.md#media-type-applicationyaml-application-yaml

0 commit comments

Comments
 (0)