@@ -1484,7 +1484,7 @@ impl fmt::Debug for Literal {
1484
1484
}
1485
1485
1486
1486
/// Tracked access to environment variables.
1487
- #[ unstable( feature = "proc_macro_tracked_env" , issue = "74690 " ) ]
1487
+ #[ unstable( feature = "proc_macro_tracked_env" , issue = "99515 " ) ]
1488
1488
pub mod tracked_env {
1489
1489
use std:: env:: { self , VarError } ;
1490
1490
use std:: ffi:: OsStr ;
@@ -1494,7 +1494,7 @@ pub mod tracked_env {
1494
1494
/// compilation, and will be able to rerun the build when the value of that variable changes.
1495
1495
/// Besides the dependency tracking this function should be equivalent to `env::var` from the
1496
1496
/// standard library, except that the argument must be UTF-8.
1497
- #[ unstable( feature = "proc_macro_tracked_env" , issue = "74690 " ) ]
1497
+ #[ unstable( feature = "proc_macro_tracked_env" , issue = "99515 " ) ]
1498
1498
pub fn var < K : AsRef < OsStr > + AsRef < str > > ( key : K ) -> Result < String , VarError > {
1499
1499
let key: & str = key. as_ref ( ) ;
1500
1500
let value = env:: var ( key) ;
@@ -1504,13 +1504,13 @@ pub mod tracked_env {
1504
1504
}
1505
1505
1506
1506
/// Tracked access to additional files.
1507
- #[ unstable( feature = "track_path" , issue = "73921 " ) ]
1507
+ #[ unstable( feature = "track_path" , issue = "99515 " ) ]
1508
1508
pub mod tracked_path {
1509
1509
1510
1510
/// Track a file explicitly.
1511
1511
///
1512
1512
/// Commonly used for tracking asset preprocessing.
1513
- #[ unstable( feature = "track_path" , issue = "73921 " ) ]
1513
+ #[ unstable( feature = "track_path" , issue = "99515 " ) ]
1514
1514
pub fn path < P : AsRef < str > > ( path : P ) {
1515
1515
let path: & str = path. as_ref ( ) ;
1516
1516
crate :: bridge:: client:: FreeFunctions :: track_path ( path) ;
0 commit comments