From 236a4163be74fa3c5600ebed643737668de41d4f Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Wed, 27 Mar 2024 10:55:25 -0400 Subject: [PATCH] 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. --- crates/uv/src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/uv/src/main.rs b/crates/uv/src/main.rs index c119912a4..35f437272 100644 --- a/crates/uv/src/main.rs +++ b/crates/uv/src/main.rs @@ -469,11 +469,11 @@ struct PipCompileArgs { no_emit_package: Vec, /// 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.