mirror of
https://github.com/astral-sh/uv.git
synced 2025-08-02 18:12:17 +00:00
Add --no-hashes
to uv export
(#6954)
## Summary Closes https://github.com/astral-sh/uv/issues/6944.
This commit is contained in:
parent
ad82b94856
commit
ccdf2d793b
7 changed files with 76 additions and 11 deletions
|
@ -2802,6 +2802,14 @@ pub struct ExportArgs {
|
|||
#[arg(long, overrides_with("dev"))]
|
||||
pub no_dev: bool,
|
||||
|
||||
/// Include hashes for all dependencies.
|
||||
#[arg(long, overrides_with("no_hashes"), hide = true)]
|
||||
pub hashes: bool,
|
||||
|
||||
/// Omit hashes in the generated output.
|
||||
#[arg(long, overrides_with("hashes"))]
|
||||
pub no_hashes: bool,
|
||||
|
||||
/// Assert that the `uv.lock` will remain unchanged.
|
||||
///
|
||||
/// Requires that the lockfile is up-to-date. If the lockfile is missing or
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue