You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I use the generated code with my project I have to disable a bunch of warnings, since I set these on my crate : #![warn(clippy::all, rust_2018_idioms, rust_2024_compatibility)]. The warnings I have to disable were: #[allow(elided_lifetimes_in_paths, clippy::redundant_static_lifetimes, clippy::approx_constant, clippy::needless_borrow)].
I think every of these warnings is actually addressable, but the clippy::approx_constant. Its not a huge pain, I just though I'd let you know.
The text was updated successfully, but these errors were encountered:
Hey, nice work with this package!
If I use the generated code with my project I have to disable a bunch of warnings, since I set these on my crate :
#![warn(clippy::all, rust_2018_idioms, rust_2024_compatibility)]
. The warnings I have to disable were:#[allow(elided_lifetimes_in_paths, clippy::redundant_static_lifetimes, clippy::approx_constant, clippy::needless_borrow)]
.I think every of these warnings is actually addressable, but the
clippy::approx_constant
. Its not a huge pain, I just though I'd let you know.The text was updated successfully, but these errors were encountered: