From 5be47f698e330ad339596d7263d26a0b77f323d0 Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Wed, 17 Apr 2024 09:48:45 -0400 Subject: [PATCH] Un-hide `--require-hashes` CLI argument (#3093) ## Summary An oversight from the release. --- crates/uv/src/cli.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/uv/src/cli.rs b/crates/uv/src/cli.rs index 52574ce01..b1c6fefc2 100644 --- a/crates/uv/src/cli.rs +++ b/crates/uv/src/cli.rs @@ -564,7 +564,7 @@ pub(crate) struct PipSyncArgs { /// - Editable installs are not supported. /// - Local dependencies are not supported, unless they point to a specific wheel (`.whl`) or /// source archive (`.zip`, `.tar.gz`), as opposed to a directory. - #[arg(long, hide = true)] + #[arg(long)] pub(crate) require_hashes: bool, /// Attempt to use `keyring` for authentication for index urls @@ -837,7 +837,7 @@ pub(crate) struct PipInstallArgs { /// - Editable installs are not supported. /// - Local dependencies are not supported, unless they point to a specific wheel (`.whl`) or /// source archive (`.zip`, `.tar.gz`), as opposed to a directory. - #[arg(long, hide = true)] + #[arg(long)] pub(crate) require_hashes: bool, /// Attempt to use `keyring` for authentication for index urls