Skip to content

Commit 35b6dc8

Browse files
committed
fix(fmt): fix formatting >:(
1 parent bc645f4 commit 35b6dc8

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

src/cache.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ pub struct CacheBuilder {
5757
path: path::PathBuf,
5858
}
5959

60-
6160
impl Cache {
6261
/// Creates a new Cache instance based on the CacheBuilder
6362
async fn new(builder: CacheBuilder) -> Result<Self> {

src/tmp.rs

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
1-
use rand::{
2-
prelude::*,
3-
distributions::Alphanumeric
4-
};
1+
use rand::{distributions::Alphanumeric, prelude::*};
52
use std::cell::UnsafeCell;
3+
use std::ffi::{OsStr, OsString};
64
use std::path;
7-
use std::ffi::{OsString, OsStr};
85
use std::str;
96

107
std::thread_local! {

0 commit comments

Comments
 (0)