Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions crates/uv-cli/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3531,7 +3531,7 @@ pub struct RunArgs {
///
/// uv includes the groups defined in `tool.uv.default-groups` by default.
/// This disables that option, however, specific groups can still be included with `--group`.
#[arg(long, env = EnvVars::UV_NO_DEFAULT_GROUPS)]
#[arg(long, env = EnvVars::UV_NO_DEFAULT_GROUPS, value_parser = clap::builder::BoolishValueParser::new())]
pub no_default_groups: bool,

/// Only include dependencies from the specified dependency group.
Expand Down Expand Up @@ -3869,7 +3869,7 @@ pub struct SyncArgs {
///
/// uv includes the groups defined in `tool.uv.default-groups` by default.
/// This disables that option, however, specific groups can still be included with `--group`.
#[arg(long, env = EnvVars::UV_NO_DEFAULT_GROUPS)]
#[arg(long, env = EnvVars::UV_NO_DEFAULT_GROUPS, value_parser = clap::builder::BoolishValueParser::new())]
pub no_default_groups: bool,

/// Only include dependencies from the specified dependency group.
Expand Down Expand Up @@ -4684,7 +4684,7 @@ pub struct TreeArgs {
///
/// uv includes the groups defined in `tool.uv.default-groups` by default.
/// This disables that option, however, specific groups can still be included with `--group`.
#[arg(long, env = EnvVars::UV_NO_DEFAULT_GROUPS)]
#[arg(long, env = EnvVars::UV_NO_DEFAULT_GROUPS, value_parser = clap::builder::BoolishValueParser::new())]
pub no_default_groups: bool,

/// Only include dependencies from the specified dependency group.
Expand Down Expand Up @@ -4861,7 +4861,7 @@ pub struct ExportArgs {
///
/// uv includes the groups defined in `tool.uv.default-groups` by default.
/// This disables that option, however, specific groups can still be included with `--group`.
#[arg(long, env = EnvVars::UV_NO_DEFAULT_GROUPS)]
#[arg(long, env = EnvVars::UV_NO_DEFAULT_GROUPS, value_parser = clap::builder::BoolishValueParser::new())]
pub no_default_groups: bool,

/// Only include dependencies from the specified dependency group.
Expand Down
Loading