Skip to content

Commit

Permalink
Unhide --emit-index-url and --emit-find-links (#2691)
Browse files Browse the repository at this point in the history
## Summary

I don't know why I hid these in the first place. Maybe I copied these
over from the `compat.rs` version.

Closes #1502.
  • Loading branch information
charliermarsh authored Mar 27, 2024
1 parent 15c9a5c commit 236a416
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/uv/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -469,11 +469,11 @@ struct PipCompileArgs {
no_emit_package: Vec<PackageName>,

/// Include `--index-url` and `--extra-index-url` entries in the generated output file.
#[clap(long, hide = true)]
#[clap(long)]
emit_index_url: bool,

/// Include `--find-links` entries in the generated output file.
#[clap(long, hide = true)]
#[clap(long)]
emit_find_links: bool,

/// Choose the style of the annotation comments, which indicate the source of each package.
Expand Down

0 comments on commit 236a416

Please sign in to comment.