bashrs 6.66.0

Rust-to-Shell transpiler for deterministic bootstrap scripts
1
2
3
4
5
6
7
8
9
10
11
pub mod config;
pub mod diagnostic;
pub mod error;

#[cfg(test)]
#[path = "config_tests.rs"]
mod config_tests;

pub use config::{Config, ShellDialect, VerificationLevel};
pub use diagnostic::{Diagnostic, ErrorCategory};
pub use error::{Error, Result};