-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checks…
v0.23.0 (#248)
* Update dependencies with `cargo update` * Update gix, parquet, arrow-schema, serde-sarif, petgraph, and vergen to latest * Update CHANGELOG * Bump version number to v0.23.0
1 parent
bbae9a0
commit 2257e0b
Showing
10 changed files
with
585 additions
and
433 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
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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,16 +1,17 @@ | ||
/// This build script uses `vergen` to expose lots of build information at compile time. | ||
/// This information is used in the `noseyparker` CLI in its `version/-V/--version` commands. | ||
use std::error::Error; | ||
use vergen::EmitBuilder; | ||
use vergen_gitcl::{ | ||
BuildBuilder, CargoBuilder, Emitter, GitclBuilder, RustcBuilder, SysinfoBuilder, | ||
}; | ||
|
||
fn main() -> Result<(), Box<dyn Error>> { | ||
// Emit the instructions | ||
EmitBuilder::builder() | ||
.all_build() | ||
.all_git() | ||
.all_cargo() | ||
.all_rustc() | ||
.all_sysinfo() | ||
Emitter::default() | ||
.add_instructions(&BuildBuilder::all_build()?)? | ||
.add_instructions(&GitclBuilder::all_git()?)? | ||
.add_instructions(&CargoBuilder::all_cargo()?)? | ||
.add_instructions(&RustcBuilder::all_rustc()?)? | ||
.add_instructions(&SysinfoBuilder::all_sysinfo()?)? | ||
.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
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