Skip to content

Commit 4f6d963

Browse files
committed
Add Rust 1.74 upgrade
And associated changes. This includes an upgrade of drand_core to 0.0.15
1 parent d216208 commit 4f6d963

File tree

7 files changed

+16
-13
lines changed

7 files changed

+16
-13
lines changed

.github/workflows/ci.yaml

+8-8
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v3
1515
- uses: actions-rs/toolchain@v1
1616
with:
17-
toolchain: 1.70.0
17+
toolchain: 1.74
1818
override: true
1919
- name: cargo fetch
2020
uses: actions-rs/cargo@v1
@@ -43,7 +43,7 @@ jobs:
4343
- uses: actions/checkout@v3
4444
- uses: actions-rs/toolchain@v1
4545
with:
46-
toolchain: 1.70.0
46+
toolchain: 1.74
4747
override: true
4848
- name: Add target
4949
run: rustup target add ${{ matrix.target }}
@@ -62,7 +62,7 @@ jobs:
6262
- uses: actions/checkout@v3
6363
- uses: actions-rs/toolchain@v1
6464
with:
65-
toolchain: 1.70.0
65+
toolchain: 1.74
6666
override: true
6767
- name: cargo check
6868
uses: actions-rs/cargo@v1
@@ -71,20 +71,20 @@ jobs:
7171
args: --tests --examples --benches --all-features
7272

7373
clippy:
74-
name: Clippy (1.70.0)
74+
name: Clippy (1.74)
7575
runs-on: ubuntu-latest
7676

7777
steps:
7878
- uses: actions/checkout@v3
7979
- uses: actions-rs/toolchain@v1
8080
with:
81-
toolchain: 1.70.0
81+
toolchain: 1.74
8282
components: clippy
8383
override: true
8484
- name: Clippy check
8585
uses: actions-rs/clippy-check@v1
8686
with:
87-
name: Clippy (1.70.0)
87+
name: Clippy (1.74)
8888
token: ${{ secrets.GITHUB_TOKEN }}
8989
args: --all-features --all-targets -- -D warnings
9090

@@ -96,7 +96,7 @@ jobs:
9696
- uses: actions/checkout@v3
9797
- uses: actions-rs/toolchain@v1
9898
with:
99-
toolchain: 1.70.0
99+
toolchain: 1.74
100100
override: true
101101
- name: cargo fetch
102102
uses: actions-rs/cargo@v1
@@ -119,7 +119,7 @@ jobs:
119119
- uses: actions/checkout@v3
120120
- uses: actions-rs/toolchain@v1
121121
with:
122-
toolchain: 1.70.0
122+
toolchain: 1.74
123123
components: rustfmt
124124
override: true
125125
- name: Check formatting

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ age = "0.9"
1111
age-core = "0.9"
1212
anyhow = "1.0"
1313
criterion = "0.4"
14-
drand_core = "0.0.14"
14+
drand_core = "0.0.15"
1515
getrandom = "0.2"
1616
hex = "0.4"
1717
rand = { version = "0.8", default-features = false }
18-
thiserror = "1.0.51"
18+
thiserror = "1.0.57"

age-plugin-tlock/CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
99
### Changed
1010

1111
- Update dependencies
12+
- Update Rust to 1.74
1213

1314
## [0.1.0] - 2023-08-06
1415

age-plugin-tlock/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ age = { workspace = true }
1616
age-core = { workspace = true }
1717
age-plugin = "0.4.0"
1818
bincode = "2.0.0-rc.3"
19-
clap = { version = "4.4.11", features = ["derive"] }
20-
clap-verbosity-flag = "2.1.1"
19+
clap = { version = "4.5.1", features = ["derive"] }
20+
clap-verbosity-flag = "2.2.0"
2121
drand_core = { workspace = true }
2222
hex = { workspace = true }
2323
thiserror = { workspace = true }

rust-toolchain

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.70.0
1+
1.74

tlock/CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
99
### Changed
1010

1111
- Update dependencies
12+
- Update Rust to 1.74
1213

1314
## [0.0.4] - 2023-08-23
1415

tlock_age/CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
99
### Changed
1010

1111
- Update dependencies
12+
- Update Rust to 1.74
1213

1314
## [0.0.3] - 2023-07-23
1415

0 commit comments

Comments
 (0)