version_info/
lib.rs

1pub fn kumo_version() -> &'static str {
2    // See build.rs
3    env!("KUMO_CI_TAG")
4}
5
6pub fn kumo_target_triple() -> &'static str {
7    // See build.rs
8    env!("KUMO_TARGET_TRIPLE")
9}