sparslog 0.1.4

SDR receiver for IKEA sparsnäs
Documentation
1
2
3
4
5
6
7
8
9
10
fn main() {
    // Add git version.
    let git = std::process::Command::new("git")
        .args(["describe", "--tags", "--dirty", "--always"])
        .output()
        .ok()
        .and_then(|o| String::from_utf8(o.stdout).ok())
        .unwrap_or_else(|| "unknown".into());
    println!("cargo:rustc-env=GIT_VERSION={}", git.trim());
}