trusty-analyze 0.1.10

Sidecar code-analysis daemon for trusty-search: complexity, smells, quality, facts
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! `trusty-analyzer` — sidecar code-analysis daemon for trusty-search.
//!
//! Library entrypoint. The previous multi-crate workspace was collapsed into
//! a single crate so the daemon can be published to crates.io as one package.
//! Each former crate is now a top-level module that re-exports its public API
//! at the same path it used to have, modulo the crate→module prefix change.

pub mod core;
pub mod embedder;
pub mod lang;
pub mod mcp;
pub mod service;
pub mod types;