rustviz-plugin 2.0.0

A tool that allows users to generate an interactive timeline depicting ownership and borrowing events for variables in a Rust code example
1
2
3
4
5
6
7
8
9
// The cli binary needs the same rustc_private gate as the lib so its
// transitive rustc_driver dependency can be linked.
#![feature(rustc_private)]

extern crate rustc_driver;

fn main() {
  rustc_plugin::cli_main(rustviz_plugin::RVPlugin);
}