This repository has no description
0

Configure Feed

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

🚨 Fix lints

+2 -5
+1 -2
examples/playground/src/main.rs
··· 1 - use itertools::Itertools; 2 1 use rand::{ 3 - Rng, SeedableRng, 2 + SeedableRng, 4 3 rngs::StdRng, 5 4 seq::{IndexedRandom, IteratorRandom}, 6 5 };
-1
examples/schedule-hell/src/main.rs
··· 2 2 3 3 use anyhow::anyhow; 4 4 use itertools::Itertools; 5 - use rand::{SeedableRng, rngs::SmallRng}; 6 5 use schedule_hell::State; 7 6 use shapemaker::{ui::Log, *}; 8 7 use std::{fs, path::PathBuf, time::Duration};
+1 -2
examples/schedule-hell/src/scenes/dices.rs
··· 1 1 use itertools::Itertools; 2 2 use rand::{ 3 - Rng, SeedableRng, 4 - rngs::{SmallRng, StdRng}, 3 + Rng, 5 4 seq::{IndexedRandom, IteratorRandom}, 6 5 }; 7 6 use shapemaker::*;