dabin 0.1.0

yes. — classify a bash command as approve/defer/deny under explicit policies
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Minimal bash parser for `dabin`'s classification needs.
//! See `model::Bail` for the constructs that intentionally short-circuit.

pub mod cursor;
pub mod lexer;
pub mod model;
pub mod parser;

#[cfg(test)]
mod corpus_tests;

pub use model::{Bail, RedirOp, Redirect, Segment, Separator};
pub use parser::parse;