aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs
index b12f6c5..9a77a70 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,7 +1,7 @@
// Copyright (C) 2022-2022 Fuwn <[email protected]>
// SPDX-License-Identifier: MIT
-#![feature(decl_macro, generators, generator_trait, once_cell)]
+#![feature(decl_macro, generators, generator_trait, lazy_cell)]
#![deny(
warnings,
nonstandard_style,
@@ -125,5 +125,5 @@ fn main() {
}
}
- println!("converted {}({}) to {}", path, index, out_path);
+ println!("converted {path}({index}) to {out_path}");
}