guardy 0.2.4

Fast, secure git hooks in Rust with secret scanning and protected file synchronization
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[allow(clippy::module_inception)]
pub mod config;
pub mod core;
pub mod files;
pub mod formats;
pub mod general;
pub mod hooks;
pub mod macros;
pub mod scanner;
pub mod status;
pub mod sync;

// Re-export main types for easier access
pub use core::CONFIG;

pub use formats::ConfigFormat;
// config_build macro is exported at crate root via #[macro_export]
// Individual configs are used internally, not exposed publicly