json-carver 0.1.0

Digital forensics tool that reads (carves) JSON strings from a dump. Think of it as a more accurate and faster replacement for the strings(1) utility.
Documentation
1
2
3
4
5
6
7
8
9
use std::io;

use thiserror::Error;

#[derive(Error, Debug)]
pub enum Err {
    #[error("I/O operation failed")]
    StreamError(#[from] io::Error),
}