mirror of https://github.com/astral-sh/uv
Fix schemars macro usage in build backend enum (#12503)
## Test Plan ``` cargo test --profile fast-build -p uv-scripts ```
This commit is contained in:
parent
6c57c90ed3
commit
6e03adc956
|
|
@ -5,7 +5,7 @@
|
|||
#[cfg_attr(feature = "schemars", derive(schemars::JsonSchema))]
|
||||
pub enum ProjectBuildBackend {
|
||||
#[cfg_attr(feature = "clap", value(hide = true))]
|
||||
#[cfg_attr(feature = "schemars", value(hide = true))]
|
||||
#[cfg_attr(feature = "schemars", schemars(skip))]
|
||||
/// Use uv as the project build backend.
|
||||
Uv,
|
||||
#[default]
|
||||
|
|
|
|||
Loading…
Reference in New Issue