codewalk 0.2.3

Walk code trees with binary detection, bounded reads, and scanner-oriented filtering
Documentation
1
2
3
4
5
6
7
8
9
10
//! Scanner-oriented file tree walking with binary detection and bounded reads.

#![warn(missing_docs)]

pub mod detect;
pub mod error;
pub mod sandbox;
mod walker;

pub use walker::{CodeWalker, FileContent, FileContentChunks, FileEntry, WalkConfig};