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 = [
2567
2567
" humansize" ,
2568
2568
" humantime" ,
2569
2569
" log" ,
2570
- " serde" ,
2571
2570
" serde_json" ,
2572
2571
" sysinfo" ,
2573
2572
" tabled" ,
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " opt-dist"
3
3
version = " 0.1.0"
4
- edition = " 2021 "
4
+ edition = " 2024 "
5
5
6
6
[dependencies ]
7
7
build_helper = { path = " ../../build_helper" }
Original file line number Diff line number Diff line change @@ -361,7 +361,10 @@ fn execute_pipeline(
361
361
362
362
fn main ( ) -> anyhow:: Result < ( ) > {
363
363
// 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
+ }
365
368
366
369
env_logger:: builder ( )
367
370
. filter_level ( LevelFilter :: Info )
You can’t perform that action at this time.
0 commit comments