-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
314 additions
and
336 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
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
use cicero::commands::{Cli, Crate}; | ||
|
||
pub static CARGO_BUNDLE_LICENSES: Cli = Crate::new("cargo-bundle-licenses").into_cli(); | ||
|
||
pub static CARGO_DENY: Cli = Crate::new("cargo-deny").into_cli(); | ||
|
||
pub static CARGO_SBOM: Cli = Crate::new("cargo-sbom").into_cli(); | ||
|
||
pub static CARGO_TARPAULIN: Cli = Crate::new("cargo-tarpaulin").into_cli(); | ||
|
||
pub static CROSS: Cli = Crate::new("cross") | ||
.into_cli() | ||
.with_base_command(&|mut command| { | ||
command | ||
.arg("build") | ||
.arg("--release"); | ||
command | ||
}); | ||
|
||
pub static DIESEL: Cli = Crate::new("diesel_cli").with_install_args(&["--no-default-features", "--features=postgres-bundled"]).into_cli(); | ||
|
||
pub static MDBOOK: Cli = Crate::new("mdbook").into_cli() | ||
.with_crate_dependencies(&[ | ||
Crate::new("mdbook-plantuml"), | ||
]); | ||
|
||
pub static TRUNK: Cli = Crate::new("trunk").with_install_args(&["--locked"]).into_cli(); |
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
pub mod commands; | ||
pub mod constants; | ||
pub mod dependency; | ||
pub mod metadata; | ||
pub mod types; | ||
pub mod util; |
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
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
Oops, something went wrong.