Unhide --emit-index-url and --emit-find-links (#2691)

## Summary

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

Closes https://github.com/astral-sh/uv/issues/1502.
This commit is contained in:
Charlie Marsh
2024-03-27 10:55:25 -04:00
committed by GitHub
parent 15c9a5c980
commit 236a4163be
+2 -2
View File
@@ -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.