Skip to content

1.0.27

Choose a tag to compare

@dtolnay dtolnay released this 14 Mar 20:39
· 653 commits to master since this release
1.0.27
e7702aa
  • Improve documentation of backtrace environment variable combinations (#69)

    • If you want panics and errors to both have backtraces, set RUST_BACKTRACE=1;
    • If you want only errors to have backtraces, set RUST_LIB_BACKTRACE=1;
    • If you want only panics to have backtraces, set RUST_BACKTRACE=1 and RUST_LIB_BACKTRACE=0.