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.
pathbuf_init_then_push
1 parent 808b018 commit ef9e4dcCopy full SHA for ef9e4dc
Cargo.toml
@@ -44,6 +44,7 @@ nursery = { level = "warn", priority = -1 }
44
pedantic = { level = "warn", priority = -1 }
45
if_then_some_else_none = "warn"
46
get_unwrap = "warn"
47
+pathbuf_init_then_push = "warn"
48
49
# Optimize build dependencies, because bindgen and proc macros / style
50
# compilation take more to run than to build otherwise.
neqo-bin/src/lib.rs
@@ -276,8 +276,7 @@ mod tests {
276
277
impl TempDir {
278
fn new() -> Self {
279
- let mut dir = std::env::temp_dir();
280
- dir.push(format!(
+ let dir = std::env::temp_dir().join(format!(
281
"neqo-bin-test-{}",
282
SystemTime::now()
283
.duration_since(SystemTime::UNIX_EPOCH)
0 commit comments