File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -2567,7 +2567,6 @@ dependencies = [
25672567 " humansize" ,
25682568 " humantime" ,
25692569 " log" ,
2570- " serde" ,
25712570 " serde_json" ,
25722571 " sysinfo" ,
25732572 " tabled" ,
Original file line number Diff line number Diff line change 11[package ]
22name = " opt-dist"
33version = " 0.1.0"
4- edition = " 2021 "
4+ edition = " 2024 "
55
66[dependencies ]
77build_helper = { path = " ../../build_helper" }
Original file line number Diff line number Diff line change @@ -361,7 +361,10 @@ fn execute_pipeline(
361361
362362fn main ( ) -> anyhow:: Result < ( ) > {
363363 // Make sure that we get backtraces for easier debugging in CI
364- std:: env:: set_var ( "RUST_BACKTRACE" , "1" ) ;
364+ unsafe {
365+ // SAFETY: we are the only thread running at this point
366+ std:: env:: set_var ( "RUST_BACKTRACE" , "1" ) ;
367+ }
365368
366369 env_logger:: builder ( )
367370 . filter_level ( LevelFilter :: Info )
You can’t perform that action at this time.
0 commit comments