A facial recognition login service for Linux.
2

Configure Feed

Select the types of activity you want to include in your feed.

nix: Bump Rust toolchain to 1.85

Rust 1.75 predates the stabilisation of edition 2024, and the modern crates.io
graph (proptest's transitive deps in particular) increasingly requires it.
Bumping the pin to 1.85 — the first stable with edition 2024 — gets us onto
a current toolchain without committing to bleeding-edge versions.

`rust-version` in Cargo.toml is bumped in lockstep so MSRV stays honest.

Isaac Corbrey (May 27, 2026, 9:56 AM EDT) 30b1d6da 685666cc

+2 -2
+1 -1
Cargo.toml
··· 13 13 edition = "2021" 14 14 license = "MIT OR Apache-2.0" 15 15 repository = "https://github.com/icorbrey/pareidolia" 16 - rust-version = "1.75" 16 + rust-version = "1.85" 17 17 18 18 # All dev / shared dependencies are declared here and inherited by member crates 19 19 # via `workspace = true`. This prevents version drift and keeps the dep graph
+1 -1
flake.nix
··· 18 18 19 19 # Pin the Rust toolchain so every contributor gets the same one. Bump 20 20 # this in lockstep with rust-version in Cargo.toml. 21 - rustToolchain = pkgs.rust-bin.stable."1.75.0".default.override { 21 + rustToolchain = pkgs.rust-bin.stable."1.85.0".default.override { 22 22 extensions = [ "rust-src" "rust-analyzer" "clippy" "rustfmt" ]; 23 23 }; 24 24