meta-ast 0.6.0

Polyglot static-analysis engine: extract symbols and cross-language dependency graphs from 9 supported source languages, with optional MetaCall deployment manifest generation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! File-system watch mode.
//!
//! Only the OS watcher lives behind the `watch` feature. The extraction cache
//! and the incremental re-analysis loop are not feature gated:
//!
//! - [`crate::cache`]: BLAKE3 fingerprinting and extraction reuse.
//! - [`crate::reanalyze`]: incremental diffing with buffer overlays.
//! - [`watcher`]: debounced `notify` watcher that drives re-analysis.
//! - [`config`]: watcher configuration.

pub mod config;
pub mod watcher;

pub use config::WatchConfig;
pub use watcher::run_watch;