skill-veil-core 0.2.0

Core library for skill-veil behavioral analysis
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Infrastructure adapters implementing port traits
//!
//! This module provides default implementations of the port traits
//! using common libraries (pulldown-cmark, regex, std::fs).

pub mod pattern_helpers;
mod pulldown_parser;
mod regex_matcher;
mod std_filesystem;
mod walk_helpers;

pub use pulldown_parser::PulldownMarkdownParser;
pub use regex_matcher::RegexPatternMatcher;
pub use std_filesystem::StdFileSystemProvider;