Switch to Rust 1.66.0 and remove RUST_LOG which caused all Rust apps to log.

This commit is contained in:
R-VdP 2023-02-03 16:00:25 +00:00
parent b291685a98
commit efe60a960e
No known key found for this signature in database

View file

@ -38,7 +38,7 @@
inherit system;
overlays = [ (import rust-overlay) devshell.overlay ];
};
rust = pkgs.rust-bin.stable."1.64.0";
rust = pkgs.rust-bin.stable."1.66.0";
llvm = pkgs.llvmPackages_latest;
# treefmt-nix configuration
treefmt.config = {
@ -104,7 +104,7 @@
value = "${llvm.libclang}/lib";
}
{
# for rust-anaylzer
# for rust-analyzer
name = "RUST_SRC_PATH";
value = "${rust.rust-src}";
}
@ -112,10 +112,6 @@
name = "RUST_BACKTRACE";
value = "1";
}
{
name = "RUST_LOG";
value = "info";
}
{
name = "DEVSHELL_NO_MOTD";
value = "1";