A crate to perform static analysis. This is a port of the vivisect library written in python.
toml
[dependencies]
vivisect = "0.1.5"
OR
toml
[dependencies]
vivisect = { git = "https://github.com/marirs/vivisect-rs", branch = "master" }
```rust use vivisect::workspace::VivWorkspace;
pub fn main() { let samplepath = "pathtotheworkspace"; let mut workspace = VivWorkspace::new("", false); workspace.loadfromfile(sample_path, None, None); workspace.analyze(); } ```
Feel free to make a pull request to update or fix any bug.
License: Apache 2.0