1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
pub fn version()->String{ return std::format!("{}-Alpha, built with kvc {} and poisson-rate-test {}", env!("CARGO_PKG_VERSION").to_string(), kvc::version(), poisson_rate_test::version()).to_string(); } pub fn about()->String{ "Some basic conditional probabilities and bayesian analysis on a KVC log. \n\ Copyright (C) 2021 Joshua Vander Hook\n\n\ This program comes with ABSOLUTELY NO WARRANTY.\n\ This is free software, and you are welcome to redistribute\n\ it under certain conditions. See LICENSE for more details or\n\ https://github.com/jodavaho/kda-tools for more info. ".to_string() }