cargo-inspect 0.10.3

This extends Cargo to allow you to desugar your Rust code and see what happens behind the curtains.
Documentation
1
2
3
4
// Closures won't be desugared by default
fn main() {
    let closure = |i: i32| i * i;
}