We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc645f4 commit 35b6dc8Copy full SHA for 35b6dc8
src/cache.rs
@@ -57,7 +57,6 @@ pub struct CacheBuilder {
57
path: path::PathBuf,
58
}
59
60
-
61
impl Cache {
62
/// Creates a new Cache instance based on the CacheBuilder
63
async fn new(builder: CacheBuilder) -> Result<Self> {
src/tmp.rs
@@ -1,10 +1,7 @@
1
-use rand::{
2
- prelude::*,
3
- distributions::Alphanumeric
4
-};
+use rand::{distributions::Alphanumeric, prelude::*};
5
use std::cell::UnsafeCell;
+use std::ffi::{OsStr, OsString};
6
use std::path;
7
-use std::ffi::{OsString, OsStr};
8
use std::str;
9
10
std::thread_local! {
0 commit comments