Compare commits

..

3 Commits

Author SHA1 Message Date
83af858a24 Bump versions
Some checks failed
CI / Typos (push) Successful in 26s
CI / Clippy (push) Failing after 1m25s
CI / Build and test (all features) (push) Failing after 3m32s
CI / Build and test (push) Has been cancelled
2026-03-11 11:08:58 -07:00
a73aad2a33 More string extractors 2026-03-11 11:08:58 -07:00
adc35e1558 Add nix files 2026-03-11 11:08:55 -07:00
3 changed files with 3 additions and 8 deletions

View File

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

View File

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