forked from science-computing/butido
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reformat the entire codebase using rustfmt
This is just the result of running `cargo fmt`. Unfortunately, quite a few changes are necessary as `rustfmt` wasn't used for quite a while. We'll add a CI check to enforce that the code is properly formatted. Signed-off-by: Michael Weiss <michael.weiss@atos.net>
- Loading branch information
1 parent
4739053
commit bc782d8
Showing
60 changed files
with
2,194 additions
and
1,281 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,14 @@ | ||
use anyhow::Result; | ||
use vergen::EmitBuilder; | ||
use std::error::Error; | ||
|
||
use vergen::EmitBuilder; | ||
|
||
fn main() -> Result<(), Box<dyn Error>> { | ||
EmitBuilder::builder() | ||
.build_timestamp() | ||
.cargo_debug() | ||
.git_sha(false) | ||
.git_commit_timestamp() | ||
.git_describe(true, true, None) | ||
.emit()?; | ||
.build_timestamp() | ||
.cargo_debug() | ||
.git_sha(false) | ||
.git_commit_timestamp() | ||
.git_describe(true, true, None) | ||
.emit()?; | ||
Ok(()) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.