Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
jdonszelmann committed Jun 9, 2023
1 parent 12fed3e commit 0bb68be
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion benches/bench.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#![cfg(not(tarpaulin))]
use crate::comparison::comparison_benches;
use criterion::{black_box, criterion_group, criterion_main, Bencher, Criterion};
use ringbuffer::{AllocRingBuffer, ConstGenericRingBuffer, RingBuffer};
use crate::comparison::comparison_benches;

mod comparison;

Expand Down
4 changes: 2 additions & 2 deletions benches/comparison.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#![cfg(not(tarpaulin))]

use std::collections::{LinkedList, VecDeque};
use std::sync::mpsc::channel;
use criterion::{black_box, criterion_group, Bencher, Criterion};
use ringbuffer::{AllocRingBuffer, ConstGenericRingBuffer, RingBuffer};
use std::collections::{LinkedList, VecDeque};
use std::sync::mpsc::channel;

const ITER: usize = 1024 * 16;
const CAP: usize = 1024;
Expand Down

1 comment on commit 0bb68be

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.