Monorepo for Tangled
0

Configure Feed

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

rustfmt: skip generated _lex, bump rust to 1.96

Lewis: May this revision serve well! <lewis@tangled.org>

Lewis (May 29, 2026, 2:50 PM +0300) 5794021d 45a22725

+4 -2
+1 -1
Cargo.toml
··· 6 6 [workspace.package] 7 7 version = "0.0.1" 8 8 edition = "2024" 9 - rust-version = "1.95" 9 + rust-version = "1.96" 10 10 license = "MIT" 11 11 authors = [ 12 12 "Lewis <lewis@tangled.org>",
+1
bobbin/crates/types/src/lib.rs
··· 12 12 clippy::should_implement_trait, 13 13 clippy::type_complexity 14 14 )] 15 + #[rustfmt::skip] 15 16 mod _lex; 16 17 17 18 pub use _lex::*;
+1
flake.nix
··· 168 168 command = pkgs.lib.getExe' fenix.packages.${system}.stable.rustfmt "rustfmt"; 169 169 options = ["--edition" "2024"]; 170 170 includes = ["*.rs"]; 171 + excludes = ["**/src/_lex/**"]; 171 172 }; 172 173 173 174 # prettier = let
+1 -1
rust-toolchain.toml
··· 1 1 [toolchain] 2 - channel = "1.95.0" 2 + channel = "1.96.0" 3 3 components = ["rustfmt", "clippy"] 4 4 targets = ["wasm32-unknown-unknown"] 5 5 profile = "minimal"