Skip to content

Commit

Permalink
Appease clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
AljoschaMeyer committed Jul 21, 2024
1 parent 7d47ff0 commit e45c7d9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/common/consumer/into_vec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,8 @@ mod tests {
use super::super::*;
use crate::sync::*;

use std::format;

// The debug output hides the internals of using semantically transparent wrappers.
#[test]
fn debug_output_hides_transparent_wrappers() {
Expand Down
4 changes: 3 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
// #![no_std]
#![no_std]
#![feature(maybe_uninit_write_slice)]
#![feature(maybe_uninit_uninit_array)]
#![feature(maybe_uninit_slice)]
#![feature(never_type)]
#![feature(allocator_api)]
#![feature(vec_push_within_capacity)]
#![allow(clippy::needless_range_loop)]
#![allow(clippy::type_complexity)]

//! # UFOTOFU
//!
Expand Down

0 comments on commit e45c7d9

Please sign in to comment.