bt-rs 0.0.1

Build tools, for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// mod.rs : src/rustc

macro_rules! declare_and_publish {
    ($mod_name:ident, $($type_name:ident),* $(,)?) => {
        mod $mod_name;

        pub use $mod_name::{
            $($type_name),*
        };
    };
}

declare_and_publish!(version, compiler_version);


// ///////////////////////////// end of file //////////////////////////// //