automatic cargo CI changes

This commit is contained in:
cscherrNT 2024-03-04 11:19:47 +00:00 committed by github-actions[bot]
parent d804f5b2a6
commit e2a39f9907
1 changed files with 1 additions and 4 deletions

View File

@ -1,9 +1,6 @@
//! what happens when we send a lot of items to an mpsc? //! what happens when we send a lot of items to an mpsc?
use std::{ use std::sync::mpsc;
sync::{mpsc, Barrier},
thread,
};
const NUMS: &[u8] = &[1, 3, 3, 7, 0xd, 0xe, 0xa, 0xd, 0xb, 0xe, 0xe, 0xf]; const NUMS: &[u8] = &[1, 3, 3, 7, 0xd, 0xe, 0xa, 0xd, 0xb, 0xe, 0xe, 0xf];