mirror of
				https://github.com/astral-sh/uv.git
				synced 2025-10-30 19:48:11 +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, |                 fork_strategy, | ||||||
|                 dependency_metadata, |                 dependency_metadata, | ||||||
|                 config_settings, |                 config_settings, | ||||||
|  |                 config_settings_package, | ||||||
|                 no_build_isolation, |                 no_build_isolation, | ||||||
|                 no_build_isolation_package, |                 no_build_isolation_package, | ||||||
|                 exclude_newer, |                 exclude_newer, | ||||||
|  | @ -422,6 +423,9 @@ fn warn_uv_toml_masked_fields(options: &Options) { | ||||||
|     if config_settings.is_some() { |     if config_settings.is_some() { | ||||||
|         masked_fields.push("config-settings"); |         masked_fields.push("config-settings"); | ||||||
|     } |     } | ||||||
|  |     if config_settings_package.is_some() { | ||||||
|  |         masked_fields.push("config-settings-package"); | ||||||
|  |     } | ||||||
|     if no_build_isolation.is_some() { |     if no_build_isolation.is_some() { | ||||||
|         masked_fields.push("no-build-isolation"); |         masked_fields.push("no-build-isolation"); | ||||||
|     } |     } | ||||||
|  |  | ||||||
|  | @ -3870,6 +3870,7 @@ fn resolve_both_special_fields() -> anyhow::Result<()> { | ||||||
|                         publish_url: None, |                         publish_url: None, | ||||||
|                         authenticate: Auto, |                         authenticate: Auto, | ||||||
|                         ignore_error_codes: None, |                         ignore_error_codes: None, | ||||||
|  |                         cache_control: None, | ||||||
|                     }, |                     }, | ||||||
|                 ], |                 ], | ||||||
|                 flat_index: [], |                 flat_index: [], | ||||||
|  | @ -3933,6 +3934,9 @@ fn resolve_both_special_fields() -> anyhow::Result<()> { | ||||||
|             config_setting: ConfigSettings( |             config_setting: ConfigSettings( | ||||||
|                 {}, |                 {}, | ||||||
|             ), |             ), | ||||||
|  |             config_settings_package: PackageConfigSettings( | ||||||
|  |                 {}, | ||||||
|  |             ), | ||||||
|             python_version: None, |             python_version: None, | ||||||
|             python_platform: None, |             python_platform: None, | ||||||
|             universal: false, |             universal: false, | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Charlie Marsh
						Charlie Marsh