Files
kumomta/crates/version-info/src/lib.rs
T
Wez Furlong 8989586c9b refactor: move version info to its own crate
Several crates depend on the config crate, which means that
several things needed to be rebuilt after committing/amending/syncing.

Separating it out reduces that impact.
2023-03-11 06:27:31 -07:00

10 lines
186 B
Rust

pub fn kumo_version() -> &'static str {
// See build.rs
env!("KUMO_CI_TAG")
}
pub fn kumo_target_triple() -> &'static str {
// See build.rs
env!("KUMO_TARGET_TRIPLE")
}