Files
letro-authentication-service/clippy.toml
2022-11-02 18:59:00 +01:00

12 lines
326 B
TOML

msrv = "1.61.0"
doc-valid-idents = ["OpenID", "OAuth", ".."]
disallowed-methods = [
{ path = "rand::thread_rng", reason = "do not create rngs on the fly, pass them as parameters" },
{ path = "chrono::Utc::now", reason = "source the current time from the clock instead" },
]
disallowed-types = [
"rand::OsRng",
]