Skip to main content

codesense/
lib.rs

1//! # Codesense
2//!
3//! Local semantic code context engine for the Xpando ecosystem.
4//!
5//! Provides fast codebase indexing, semantic search, and AI-ready context
6//! retrieval. Designed to run locally — no cloud dependency.
7//!
8//! Being ported from the Elixir context engine in `nucleus/context_engine/`.
9
10/// Library version.
11pub const VERSION: &str = env!("CARGO_PKG_VERSION");
12
13#[cfg(test)]
14mod tests {
15    use super::*;
16
17    #[test]
18    fn version_is_set() {
19        assert!(!VERSION.is_empty());
20    }
21}