teo 0.3.4

Schema-driven web server framework.
Documentation
1
2
3
4
5
6
7
use rustc_version::version;

fn main() {
    // export rustc version to the executable
    let version_string = version().unwrap().to_string();
    println!("cargo:rustc-env=TEO_RUSTC_VERSION={}", version_string);
}