Fix schemars macro usage in build backend enum (#12503)

## Test Plan

```
cargo test --profile fast-build -p uv-scripts
```
This commit is contained in:
Charlie Marsh 2025-03-26 22:23:21 -04:00 committed by GitHub
parent 6c57c90ed3
commit 6e03adc956
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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]