Skip to content

Commit 2e23d8f

Browse files
committed
Update dependencies and use edition = "2024"
1 parent c872d08 commit 2e23d8f

File tree

10 files changed

+20
-20
lines changed

10 files changed

+20
-20
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,12 @@ jobs:
4141
strategy:
4242
matrix:
4343
toolchain:
44-
- "1.81"
44+
- "1.85"
45+
- "stable"
46+
- "nightly"
4547
folder:
4648
- "cli"
47-
include:
48-
- toolchain: "1.75"
49-
folder: api
49+
- "api"
5050
runs-on: ubuntu-latest
5151
steps:
5252
- uses: actions/checkout@v6
@@ -107,7 +107,7 @@ jobs:
107107
strategy:
108108
matrix:
109109
toolchain:
110-
- 1.75
110+
- 1.85
111111
runs-on: ubuntu-latest
112112
steps:
113113
- uses: actions/checkout@v6

.github/workflows/devskim-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ jobs:
2424
uses: microsoft/DevSkim-Action@v1
2525

2626
- name: Upload DevSkim scan results to GitHub Security tab
27-
uses: github/codeql-action/upload-sarif@v3
27+
uses: github/codeql-action/upload-sarif@v4
2828
with:
2929
sarif_file: devskim-results.sarif

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[workspace]
2-
resolver = "2"
2+
resolver = "3"
33
members = ["api", "cli"]
44
default-members = ["api", "cli"]
55

@@ -12,10 +12,10 @@ normalize-path = "0.2.0"
1212
pretty-error-debug = "0.3.0"
1313
tempfile = "3.0.0"
1414
thiserror = "2.0.8"
15-
zip = { version = ">= 2.0.0, < 5.0.0", default-features = false }
15+
zip = { version = ">= 2.0.0, < 7.0.0", default-features = false }
1616

1717
[workspace.dependencies.zipsign-api]
18-
version = "0.1.5"
18+
version = "0.2.0"
1919
path = "api"
2020
default-features = false
2121
features = ["tar", "zip"]

api/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "zipsign-api"
33
description = "Sign and verify `.zip` and `.tar.gz` files with an ed25519 signing key"
4-
version = "0.1.5"
5-
edition = "2021"
4+
version = "0.2.0"
5+
edition = "2024"
66
authors = ["René Kijewski <crates.io@k6i.de>"]
77
repository = "https://github.com/Kijewski/zipsign"
88
license = "MIT OR Apache-2.0 OR Apache-2.0 WITH LLVM-exception"
9-
rust-version = "1.73"
9+
rust-version = "1.85"
1010

1111
[package.metadata.docs.rs]
1212
all-features = true

api/clippy.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
msrv = "1.73.0"
1+
msrv = "1.85.0"

api/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
1+
#![cfg_attr(docsrs, feature(doc_cfg))]
22
#![forbid(unsafe_code)]
33
#![allow(unknown_lints)]
44
#![warn(absolute_paths_not_starting_with_crate)]

cli/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "zipsign"
33
description = "Sign and verify `.zip` and `.tar.gz` files with an ed25519 signing key"
4-
version = "0.1.4"
5-
edition = "2021"
4+
version = "0.2.0"
5+
edition = "2024"
66
authors = ["René Kijewski <crates.io@k6i.de>"]
77
repository = "https://github.com/Kijewski/zipsign"
88
license = "MIT OR Apache-2.0 OR Apache-2.0 WITH LLVM-exception"
9-
rust-version = "1.81"
9+
rust-version = "1.85"
1010

1111
[package.metadata.docs.rs]
1212
all-features = true

cli/clippy.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
msrv = "1.81.0"
1+
msrv = "1.85.0"

cli/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
1+
#![cfg_attr(docsrs, feature(doc_cfg))]
22
#![forbid(unsafe_code)]
33
#![allow(unknown_lints)]
44
#![doc = include_str!("../README.md")]

rustfmt.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
combine_control_expr = false
2-
edition = "2021"
2+
edition = "2024"
33
format_macro_matchers = true
44
group_imports = "StdExternalCrate"
55
imports_granularity = "Module"

0 commit comments

Comments
 (0)