Skip to content

Commit 2fc0f18

Browse files
committed
improve: bump MSRV to 1.92/2024ed
1 parent 9a065d3 commit 2fc0f18

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ permissions:
2424
env:
2525
CARGO_TERM_COLOR: always
2626
RUST_BACKTRACE: 1
27-
MSRV: "1.88"
27+
MSRV: "1.92"
2828

2929
jobs:
3030
# Detect if this is a workflow-only change (for skipping builds on Dependabot workflow PRs)
@@ -132,7 +132,7 @@ jobs:
132132
needs: changes
133133
if: needs.changes.outputs.code == 'true' || github.actor != 'dependabot[bot]'
134134
env:
135-
RUST_VERSION: "1.88"
135+
RUST_VERSION: "1.92"
136136
steps:
137137
- name: Harden the runner (Audit all outbound calls)
138138
uses: step-security/harden-runner@20cf305ff2072d973412fa9b1e3a4f227bda3c76 # v2.14.0
@@ -147,7 +147,7 @@ jobs:
147147
- name: Install Rust toolchain
148148
uses: dtolnay/rust-toolchain@881ba7bf39a41cda34ac9e123fb41b44ed08232f # master
149149
with:
150-
toolchain: "1.88"
150+
toolchain: "1.92"
151151

152152
- name: Install development tools via Mise
153153
uses: step-security/mise-action@2fa1b2b4fa1577588d8ac75f4dfa0f67c266d2a0 # v3.4.1

.mise.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# See Makefile for convenient shortcuts.
1111

1212
[tools]
13-
rust = "stable"
13+
rust = "1.92"
1414
node = "24"
1515

1616
# Development tools (installed automatically with `mise install`)

.serena/memories/architecture.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ InferaDB CLI is a command-line tool for managing authorization in InferaDB. It p
1212

1313
## Tech Stack
1414

15-
- **Language**: Rust 2021, MSRV 1.88
15+
- **Language**: Rust 2021, MSRV 1.92
1616
- **CLI Framework**: `clap` 4.x with derive macros
1717
- **Async Runtime**: `tokio` (full features)
1818
- **API Client**: `inferadb` SDK crate (REST with rustls)

.serena/memories/style_conventions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Rust Edition & Toolchain
44

55
- **Edition**: Rust 2021
6-
- **MSRV**: 1.88
6+
- **MSRV**: 1.92
77
- **Toolchain**: Stable (with nightly for rustfmt)
88
- **Components**: clippy, rust-analyzer, rust-src, rustfmt
99

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[package]
22
name = "inferadb-cli"
33
version = "0.1.0"
4-
edition = "2021"
5-
rust-version = "1.88"
4+
edition = "2024"
5+
rust-version = "1.92"
66
authors = ["InferaDB Team"]
77
description = "InferaDB CLI—debug authorization decisions, test policies, and manage tenants from your terminal"
88
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)