From 2378a68b50ee72d6a2b3a6c8a9e65f5aab0d65b3 Mon Sep 17 00:00:00 2001 From: Yoshua Wuyts Date: Wed, 13 Nov 2019 23:35:27 +0100 Subject: [PATCH] cargo fmt Signed-off-by: Yoshua Wuyts --- benches/mutex.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/benches/mutex.rs b/benches/mutex.rs index 8ef66a6d..96f5c3e4 100644 --- a/benches/mutex.rs +++ b/benches/mutex.rs @@ -41,7 +41,7 @@ mod async_std { } } - mod std { +mod std { extern crate test; use std::sync::{Arc, Mutex}; @@ -80,13 +80,13 @@ mod async_std { t.join().unwrap(); } } - } +} - mod parking_lot { +mod parking_lot { extern crate test; - use std::sync::Arc; use parking_lot::Mutex; + use std::sync::Arc; use std::thread; use test::Bencher; @@ -122,4 +122,4 @@ mod async_std { t.join().unwrap(); } } - } +}