Skip to content

Commit

Permalink
fix: Correct xtask crate Display impl (#232)
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Lilley Brinker <[email protected]>
  • Loading branch information
alilleybrinker authored Jan 29, 2025
1 parent 7b43172 commit 29beb5d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions xtask/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,15 @@ pub struct ReleaseArgs {
#[derive(Debug, Clone, Copy, derive_more::Display, clap::ValueEnum)]
pub enum Crate {
/// The `gitoid` crate, found in the `gitoid` folder.
#[display("gitoid")]
Gitoid,

/// The `omnibor` crate, found in the `omnibor` folder.
#[display("omnibor")]
Omnibor,

/// The `omnibor-cli` crate, found in the `omnibor-cli` folder.
#[display("omnibor-cli")]
OmniborCli,
}

Expand Down

0 comments on commit 29beb5d

Please sign in to comment.