mirror of
https://github.com/mailscope/kumomta.git
synced 2026-09-06 02:28:56 +00:00
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.
10 lines
186 B
Rust
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")
|
|
}
|