sephera_core 0.5.0

Shared analysis engine behind the Sephera CLI for LOC metrics, context building, and Tree-sitter AST compression.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![allow(clippy::module_name_repetitions)]

mod context;
mod git;
mod source;

pub use context::{
    AvailableContextProfiles, ContextCommandInput, ResolvedContextCommand,
    ResolvedContextOptions, build_context_report, resolve_context_command,
};
pub use source::{
    ResolvedSource, SourceRequest, TreeHostingStyle, resolve_source,
};