flowistry_ide 0.5.34

Information Flow in the IDE for Rust
#![feature(rustc_private, unboxed_closures, box_patterns, trait_alias)]
#![allow(
  clippy::single_match,
  clippy::needless_lifetimes,
  clippy::needless_return,
  clippy::len_zero,
  clippy::let_and_return
)]

extern crate either;
extern crate rustc_data_structures;
extern crate rustc_driver;
extern crate rustc_errors;
extern crate rustc_hir;
extern crate rustc_hir_pretty;
extern crate rustc_index;
extern crate rustc_interface;
extern crate rustc_macros;
extern crate rustc_middle;
extern crate rustc_mir_dataflow;
extern crate rustc_serialize;
extern crate rustc_span;

#[cfg(feature = "decompose")]
mod decompose;
mod focus;
mod playground;
mod plugin;
mod spans;

pub use plugin::FlowistryPlugin;