teo 0.1.4

Next-generation web framework for Rust, Node.js and Python.
Documentation
1
2
3
4
5
6
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);
}