Skip to main content

sqlite_graphrag/constants/
identity.rs

1//! Product identity and logging defaults.
2//!
3//! Split out of the former single-file `constants.rs` in v1.2.5;
4//! every item is re-exported by the parent module, so `crate::constants::X`
5//! resolves exactly as before.
6
7/// Default tracing filter level when neither CLI `-v`/`-q` nor XDG `log.level`
8/// is set (GAP-SG-93).
9pub const DEFAULT_LOG_LEVEL: &str = "info";
10
11/// Crate version string sourced from `CARGO_PKG_VERSION` at build time.
12pub const SQLITE_GRAPHRAG_VERSION: &str = env!("CARGO_PKG_VERSION");