From 27b4c6ee033ba853b801eec1c7bbba4e6fc85828 Mon Sep 17 00:00:00 2001 From: Badi Ifaoui Date: Fri, 4 Sep 2026 16:48:44 +0000 Subject: [PATCH] crates, bindings: correct stated MSRV to 1.85 Resolved-graph audit (cargo metadata --locked) across crates/ and each binding's own lockfile (dart/rust, python) shows curve25519-dalek 5.0.0 and the blake2/sha2 0.11 chain as the true maximum declared rust-version in every one of them: 1.85, not the previously stated 1.82. No toolchain change; crates/rust-toolchain.toml and the wasm binding's stay pinned at 1.97.1, already above the corrected floor. --- bindings/dart/rust/Cargo.toml | 2 +- bindings/python/Cargo.toml | 2 +- crates/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bindings/dart/rust/Cargo.toml b/bindings/dart/rust/Cargo.toml index 9975a592..1ea07a9e 100644 --- a/bindings/dart/rust/Cargo.toml +++ b/bindings/dart/rust/Cargo.toml @@ -2,7 +2,7 @@ name = "ae-core-dart" version = "0.1.0" edition = "2021" -rust-version = "1.82" +rust-version = "1.85" license = "MIT" description = "flutter_rust_bridge binding over the ae-core protocol primitives" publish = false diff --git a/bindings/python/Cargo.toml b/bindings/python/Cargo.toml index f3ab3f6f..e0035278 100644 --- a/bindings/python/Cargo.toml +++ b/bindings/python/Cargo.toml @@ -2,7 +2,7 @@ name = "ae-core-py" version = "0.1.0" edition = "2021" -rust-version = "1.82" +rust-version = "1.85" license = "MIT" description = "PyO3 binding over the ae-core protocol primitives" publish = false diff --git a/crates/Cargo.toml b/crates/Cargo.toml index 1c7c54a2..9a6c5908 100644 --- a/crates/Cargo.toml +++ b/crates/Cargo.toml @@ -5,7 +5,7 @@ members = ["ae-core", "ae-fate", "ae-parity"] [workspace.package] version = "0.0.0" edition = "2021" -rust-version = "1.82" +rust-version = "1.85" license = "MIT" repository = "https://github.com/growae/reactive" publish = false