vivisect 0.1.13

A cross-platform, ELF, Mach-o, and PE binary parsing and loading crate.
Documentation
# Vivisect
[![Linux Arm7](https://github.com/marirs/vivisect-rs/actions/workflows/linux_arm7.yml/badge.svg?branch=master)](https://github.com/marirs/vivisect-rs/actions/workflows/linux_arm7.yml)
[![Linux x86_64](https://github.com/marirs/vivisect-rs/actions/workflows/linux_x86-64.yml/badge.svg?branch=master)](https://github.com/marirs/vivisect-rs/actions/workflows/linux_x86-64.yml)
[![macOS](https://github.com/marirs/vivisect-rs/actions/workflows/macos.yml/badge.svg?branch=master)](https://github.com/marirs/vivisect-rs/actions/workflows/macos.yml)
[![Windows](https://github.com/marirs/vivisect-rs/actions/workflows/windows.yml/badge.svg?branch=master)](https://github.com/marirs/vivisect-rs/actions/workflows/windows.yml)

A crate to perform static analysis. This is a port of the vivisect library written in python.

[See the original project.](https://github.com/vivisect/vivisect)

### Requirements
- Rust 1.70+ (2021 edition)

### Usage
```toml
[dependencies]
vivisect = "0.1.12"
```

OR

```toml
[dependencies]
vivisect = { git = "https://github.com/marirs/vivisect-rs", branch = "master" }
```

### Example
```rust
use vivisect::workspace::VivWorkspace;

pub fn main() {
    let sample_path = "path_to_the_workspace";
    let mut workspace = VivWorkspace::new("", false);
    workspace.load_from_file(sample_path, None, None);
    workspace.analyze();
}
```

### Contribution

Feel free to make a pull request to update or fix any bug.

---
License: Apache 2.0