@@ -39,15 +39,15 @@ pub enum TargetTriple {
3939
4040    /// An ARM-based macOS target, as seen on Apple Silicon devices 
4141/// 
42- /// By default, assumes the least-recent, non-EOL macOS version (12 .0), but respects 
42+ /// By default, assumes the least-recent, non-EOL macOS version (13 .0), but respects 
4343/// the `MACOSX_DEPLOYMENT_TARGET` environment variable if set. 
4444#[ cfg_attr( feature = "clap" ,  value( name = "aarch64-apple-darwin" ) ) ]  
4545    #[ cfg_attr( feature = "schemars" ,  schemars( rename = "aarch64-apple-darwin" ) ) ]  
4646    Aarch64AppleDarwin , 
4747
4848    /// An x86 macOS target. 
4949/// 
50- /// By default, assumes the least-recent, non-EOL macOS version (12 .0), but respects 
50+ /// By default, assumes the least-recent, non-EOL macOS version (13 .0), but respects 
5151/// the `MACOSX_DEPLOYMENT_TARGET` environment variable if set. 
5252#[ cfg_attr( feature = "clap" ,  value( name = "x86_64-apple-darwin" ) ) ]  
5353    #[ cfg_attr( feature = "schemars" ,  schemars( rename = "x86_64-apple-darwin" ) ) ]  
@@ -212,15 +212,15 @@ impl TargetTriple {
212212                Arch :: X86_64 , 
213213            ) , 
214214            Self :: Macos  | Self :: Aarch64AppleDarwin  => { 
215-                 let  ( major,  minor)  = macos_deployment_target ( ) . map_or ( ( 12 ,  0 ) ,  |( major,  minor) | { 
215+                 let  ( major,  minor)  = macos_deployment_target ( ) . map_or ( ( 13 ,  0 ) ,  |( major,  minor) | { 
216216                    debug ! ( "Found macOS deployment target: {}.{}" ,  major,  minor) ; 
217217                    ( major,  minor) 
218218                } ) ; 
219219                Platform :: new ( Os :: Macos  {  major,  minor } ,  Arch :: Aarch64 ) 
220220            } 
221221            Self :: I686PcWindowsMsvc  => Platform :: new ( Os :: Windows ,  Arch :: X86 ) , 
222222            Self :: X8664AppleDarwin  => { 
223-                 let  ( major,  minor)  = macos_deployment_target ( ) . map_or ( ( 12 ,  0 ) ,  |( major,  minor) | { 
223+                 let  ( major,  minor)  = macos_deployment_target ( ) . map_or ( ( 13 ,  0 ) ,  |( major,  minor) | { 
224224                    debug ! ( "Found macOS deployment target: {}.{}" ,  major,  minor) ; 
225225                    ( major,  minor) 
226226                } ) ; 
0 commit comments