Compare commits

..

3 Commits

Author SHA1 Message Date
478eebb5bf Bump versions
Some checks failed
CI / Typos (push) Successful in 17s
CI / Build and test (push) Failing after 2m12s
CI / Clippy (push) Failing after 3m24s
CI / Build and test (all features) (push) Failing after 7m21s
2026-03-11 11:12:46 -07:00
f8211dc44a More string extractors 2026-03-11 11:12:46 -07:00
cc27056280 Add nix files 2026-03-11 11:12:44 -07:00
3 changed files with 8 additions and 3 deletions

View File

@@ -1,9 +1,12 @@
let
rustOverlay = import (
builtins.fetchTarball "https://github.com/oxalica/rust-overlay/archive/master.tar.gz"
builtins.fetchTarball {
url = "https://github.com/oxalica/rust-overlay/archive/master.tar.gz";
sha256 = "0qgrkgc695a7gja83dngxrcx4gdg9056gvg5325i5yyjxg0ni6c9";
}
);
pkgsDefault = import <nixpkgs> { overlays = [ rustOverlay ]; };
rustToolchain = pkgsDefault.rust-bin.stable."1.94.0".default;
rustToolchain = pkgsDefault.rust-bin.fromRustupToolchainFile ./rust-toolchain.toml;
rustPlatformDefault = pkgsDefault.makeRustPlatform {
cargo = rustToolchain;
rustc = rustToolchain;

View File

@@ -16,7 +16,7 @@
overlays = [ (import rust-overlay) ];
pkgs = import nixpkgs { inherit system overlays; };
rustToolchain = pkgs.rust-bin.stable."1.94.0".default;
rustToolchain = pkgs.rust-bin.fromRustupToolchainFile ./rust-toolchain.toml;
rustPlatform = pkgs.makeRustPlatform {
cargo = rustToolchain;

2
rust-toolchain.toml Normal file
View File

@@ -0,0 +1,2 @@
[toolchain]
channel = "1.94.0"