mirror of
https://github.com/openbsd/ports.git
synced 2026-06-17 23:13:55 +02:00
16 lines
391 B
Plaintext
16 lines
391 B
Plaintext
Disable error on warnings.
|
|
rustc 1.82.0 introduces a new deprecation and the warning is treat as error.
|
|
|
|
Index: src/main.rs
|
|
--- src/main.rs.orig
|
|
+++ src/main.rs
|
|
@@ -2,8 +2,6 @@
|
|
// <https://rust-lang.github.io/rust-clippy/master/index.html>
|
|
#![allow(clippy::needless_return)]
|
|
//
|
|
-// Fail build on Clippy warnings
|
|
-#![deny(warnings)]
|
|
|
|
use backtrace::Backtrace;
|
|
use clap::CommandFactory;
|