Skip to content

Commit 63dee2f

Browse files
committed
fix: downgrade to edition 2021 and MSRV 1.80 for stable Rust compatibility
Edition 2024 requires Rust 1.85+ which breaks installation for users on stable toolchains (e.g., Rust 1.84). Since we support Python 3.9+ targeting enterprise environments, a conservative MSRV aligns with that philosophy. Changes: - rust/Cargo.toml: edition 2024 → 2021, rust-version 1.91 → 1.80 Fixes #30
1 parent 7dd8597 commit 63dee2f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rust/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[package]
22
name = "cachekit-rs"
33
version = "0.2.1"
4-
edition = "2024"
4+
edition = "2021"
55
authors = ["cachekit Contributors"]
66
description = "High-performance storage engine for caching with compression and encryption"
7-
rust-version = "1.91"
7+
rust-version = "1.80"
88
license = "MIT"
99
repository = "https://github.com/cachekit-io/cachekit-py"
1010
homepage = "https://github.com/cachekit-io/cachekit-py"

0 commit comments

Comments
 (0)