teo 0.2.24

Schema-centered next-generation web framework for Rust, Node.js and Python.
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);
}