Commit 2f1803f4 authored by Nick Mathewson's avatar Nick Mathewson 🥔
Browse files

Suppress clippy warnings in tor-basic-utils.

These are warnings that we've decided it's okay to suppress elsewhere.
parent aaa8bfcb
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -414,6 +414,7 @@ where

#[cfg(test)]
#[allow(clippy::unwrap_used)] // why is this not the default in tests
#[allow(clippy::print_stderr)]
mod test {
    use super::*;
    use futures::channel::mpsc;
+1 −0
Original line number Diff line number Diff line
@@ -38,6 +38,7 @@
#![deny(clippy::unnecessary_wraps)]
#![warn(clippy::unseparated_literal_suffix)]
#![deny(clippy::unwrap_used)]
#![allow(clippy::let_unit_value)]

use std::fmt;