Skip to content

Commit 6d2cf3f

Browse files
committed
Rust 2024 edition
1 parent 7514bdb commit 6d2cf3f

File tree

6 files changed

+24
-32
lines changed

6 files changed

+24
-32
lines changed

.github/dependabot.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
version: 2
22
updates:
3-
- package-ecosystem: "cargo"
4-
directory: "/"
5-
schedule:
6-
interval: "monthly"
3+
- package-ecosystem: "cargo"
4+
directory: "/"
5+
schedule:
6+
interval: "monthly"
7+
- package-ecosystem: "github-actions"
8+
directory: "/"
9+
schedule:
10+
interval: "monthly"

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
rust:
7373
- stable
7474
- beta
75-
- 1.74.0 #MSRV
75+
- 1.85.0 #MSRV
7676
fail-fast: false
7777
steps:
7878
- uses: actions/checkout@v4

.github/workflows/security-audit.yaml

Lines changed: 0 additions & 12 deletions
This file was deleted.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ keywords = [
1515
"transform-encryption",
1616
]
1717
description = "A pure-Rust implementation of Transform Encryption, a Proxy Re-encryption scheme"
18-
edition = "2021"
19-
rust-version = "1.74.0"
18+
edition = "2024"
19+
rust-version = "1.85.0"
2020

2121
[target.'cfg(all(unix, not(target_arch = "wasm32")))'.dependencies]
2222
libc = { version = "0.2" }

flake.lock

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

rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[toolchain]
22
profile = "default"
3-
channel = "1.82.0"
3+
channel = "1.85.0"

0 commit comments

Comments
 (0)