@@ -1385,7 +1385,7 @@ impl fmt::Debug for Literal {
1385
1385
}
1386
1386
1387
1387
/// Tracked access to environment variables.
1388
- #[ unstable( feature = "proc_macro_tracked_env" , issue = "74690 " ) ]
1388
+ #[ unstable( feature = "proc_macro_tracked_env" , issue = "99515 " ) ]
1389
1389
pub mod tracked_env {
1390
1390
use std:: env:: { self , VarError } ;
1391
1391
use std:: ffi:: OsStr ;
@@ -1395,7 +1395,7 @@ pub mod tracked_env {
1395
1395
/// compilation, and will be able to rerun the build when the value of that variable changes.
1396
1396
/// Besides the dependency tracking this function should be equivalent to `env::var` from the
1397
1397
/// standard library, except that the argument must be UTF-8.
1398
- #[ unstable( feature = "proc_macro_tracked_env" , issue = "74690 " ) ]
1398
+ #[ unstable( feature = "proc_macro_tracked_env" , issue = "99515 " ) ]
1399
1399
pub fn var < K : AsRef < OsStr > + AsRef < str > > ( key : K ) -> Result < String , VarError > {
1400
1400
let key: & str = key. as_ref ( ) ;
1401
1401
let value = env:: var ( key) ;
@@ -1405,13 +1405,13 @@ pub mod tracked_env {
1405
1405
}
1406
1406
1407
1407
/// Tracked access to additional files.
1408
- #[ unstable( feature = "track_path" , issue = "73921 " ) ]
1408
+ #[ unstable( feature = "track_path" , issue = "99515 " ) ]
1409
1409
pub mod tracked_path {
1410
1410
1411
1411
/// Track a file explicitly.
1412
1412
///
1413
1413
/// Commonly used for tracking asset preprocessing.
1414
- #[ unstable( feature = "track_path" , issue = "73921 " ) ]
1414
+ #[ unstable( feature = "track_path" , issue = "99515 " ) ]
1415
1415
pub fn path < P : AsRef < str > > ( path : P ) {
1416
1416
let path: & str = path. as_ref ( ) ;
1417
1417
crate :: bridge:: client:: FreeFunctions :: track_path ( path) ;
0 commit comments