Skip to content

Commit 34696e6

Browse files
committed
cargo fmt
1 parent 774e804 commit 34696e6

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ As I am starting my journey with Rust, here it goes a few reminders so I don't h
9595
Before pushing to *crates.io*, run the following:
9696

9797
1. `cargo fmt`
98-
2. `cargo build`
98+
2. `cargo build --release`
9999
3. `cargo test`
100100
4. `cargo clippy`
101101

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,4 +115,4 @@ pub async fn process_local_path(
115115
let output_paths = processing::handle_results(repositories, false, &output_dir).await?;
116116

117117
Ok(output_paths)
118-
}
118+
}

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,4 +101,4 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
101101
Err(e.into())
102102
}
103103
}
104-
}
104+
}

src/repository.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,4 @@ impl fmt::Display for Repository {
5757
self.has_content()
5858
)
5959
}
60-
}
60+
}

0 commit comments

Comments
 (0)