As previously suggested here: #84448 (comment) Starting from #89926, std::time::Instant::duration_since() effectively does the same thing as the later introduced std::time::Instant::saturating_duration_since() (they are now literally ide...
I want to forbidstd::time::Instant::now, because it doesn't work on web/wasm: ❯ cat clippy.toml disallowed-methods = ["std::time::Instant::now"] Instead I want to usehttps://crates.io/crates/instant However, when I useinstant::Instant::nowI get a false-positive error. Lint Na...