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.
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.