1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-06-28 03:28:32 +02:00

Format imports with imports_granularity = "Module".

This commit is contained in:
Andrew Walbran
2023-03-16 15:48:39 +00:00
parent 94eafee6bb
commit ecbb7e41bb
6 changed files with 13 additions and 19 deletions

View File

@ -13,8 +13,7 @@
// limitations under the License.
// ANCHOR: Philosopher
use std::sync::mpsc;
use std::sync::{Arc, Mutex};
use std::sync::{mpsc, Arc, Mutex};
use std::thread;
use std::time::Duration;