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
17
// mod.rs : src/common

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

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

declare_and_publish!(tool_version, ToolVersion);
declare_and_publish!(version_error, VersionError);


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