idanarye / rust-typed-builder

Compile-time type-checked builder derive
https://crates.io/crates/typed-builder
Apache License 2.0
904 stars 52 forks source link

Allow clippy::no_effect_underscore_binding #134

Closed SUPERCILEX closed 8 months ago

SUPERCILEX commented 8 months ago
error: binding to `_` prefixed variable with no side-effect
  --> fuc_engine/src/ops/remove.rs:32:10
   |
32 | #[derive(TypedBuilder, Debug)]
   |          ^^^^^^^^^^^^
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#no_effect_underscore_binding
   = note: this error originates in the derive macro `TypedBuilder` (in Nightly builds, run with -Z macro-backtrace for more info)
SUPERCILEX commented 8 months ago

@idanarye bump

SUPERCILEX commented 8 months ago

Thanks!

SUPERCILEX commented 7 months ago

Any chance you can make a new release?

idanarye commented 7 months ago

@SUPERCILEX Done. I made it a PR bugfix release because it's not a new feature.

SUPERCILEX commented 7 months ago

That's awesome, thank you!