mirror of
https://github.com/astral-sh/uv.git
synced 2025-10-30 03:27:31 +00:00
Fix bad merge in warn_uv_toml_masked_fields (#14767)
## Summary The branch got stale and merged without flagging that this no longer compiles.
This commit is contained in:
parent
a42a2846e6
commit
0487034e91
2 changed files with 8 additions and 0 deletions
|
|
@ -302,6 +302,7 @@ fn warn_uv_toml_masked_fields(options: &Options) {
|
|||
fork_strategy,
|
||||
dependency_metadata,
|
||||
config_settings,
|
||||
config_settings_package,
|
||||
no_build_isolation,
|
||||
no_build_isolation_package,
|
||||
exclude_newer,
|
||||
|
|
@ -422,6 +423,9 @@ fn warn_uv_toml_masked_fields(options: &Options) {
|
|||
if config_settings.is_some() {
|
||||
masked_fields.push("config-settings");
|
||||
}
|
||||
if config_settings_package.is_some() {
|
||||
masked_fields.push("config-settings-package");
|
||||
}
|
||||
if no_build_isolation.is_some() {
|
||||
masked_fields.push("no-build-isolation");
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue