We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 97f9691 + 3613604 commit d191a0cCopy full SHA for d191a0c
stable-check/Cargo.toml
@@ -2,5 +2,4 @@
2
name = "stable-check"
3
version = "0.1.0"
4
authors = ["steveklabnik <steve@steveklabnik.com>"]
5
-
6
-[dependencies]
+edition = "2018"
stable-check/src/main.rs
@@ -20,7 +20,7 @@ fn main() {
20
}
21
22
23
-fn check_directory(dir: &Path) -> Result<(), Box<Error>> {
+fn check_directory(dir: &Path) -> Result<(), Box<dyn Error>> {
24
for entry in fs::read_dir(dir)? {
25
let entry = entry?;
26
let path = entry.path();
0 commit comments