Skip to content

Commit 973598c

Browse files
committed
Run cargo update, bump MSRV to 1.75
zip 3.0.0 requires rustc >=1.75
1 parent 94236cc commit 973598c

File tree

3 files changed

+66
-61
lines changed

3 files changed

+66
-61
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
matrix:
4343
os: [ubuntu-latest, windows-latest, macos-latest]
4444
# Stable and MSRV
45-
rust_version: [stable, 1.74]
45+
rust_version: [stable, 1.75]
4646

4747
steps:
4848
- name: Checkout the repository

Cargo.lock

Lines changed: 62 additions & 57 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repository = "https://github.com/tldr-pages/tlrc"
88
documentation = "https://tldr.sh/tlrc"
99
license = "MIT"
1010
edition = "2021"
11-
rust-version = "1.74"
11+
rust-version = "1.75"
1212

1313
[[bin]]
1414
name = "tldr"
@@ -19,7 +19,7 @@ default = ["socks-proxy"]
1919
socks-proxy = ["ureq/socks-proxy"]
2020

2121
[dependencies]
22-
clap = { version = "4.5.37", features = ["derive", "wrap_help"] }
22+
clap = { version = "4.5.38", features = ["derive", "wrap_help"] }
2323
dirs = "6.0.0"
2424
once_cell = "1.21.3"
2525
ring = "0.17.14"
@@ -29,7 +29,7 @@ toml = "0.8.22"
2929
unicode-width = { version = "0.2.0", default-features = false }
3030
ureq = { version = "3.0.11", default-features = false, features = ["rustls", "platform-verifier"] }
3131
yansi = "1.0.1"
32-
zip = { version = "2.6.1", default-features = false, features = ["deflate"] }
32+
zip = { version = "3.0.0", default-features = false, features = ["deflate-flate2-zlib-rs"] }
3333

3434
[dev-dependencies]
3535
assert_cmd = "2.0.17"

0 commit comments

Comments
 (0)