mirror of
https://gitlab.com/fabinfra/fabaccess/bffh.git
synced 2024-11-23 23:27:57 +01:00
24 lines
560 B
Rust
24 lines
560 B
Rust
#[forbid(private_in_public)]
|
|
pub use sdk_proc::module;
|
|
|
|
pub use futures_util::future::BoxFuture;
|
|
pub mod initiators;
|
|
|
|
pub const VERSION_STRING: &'static str = env!("CARGO_PKG_VERSION");
|
|
pub const VERSION_STRING_PARTS: (&'static str, &'static str, &'static str, &'static str) = (
|
|
env!("CARGO_PKG_VERSION_MAJOR"),
|
|
env!("CARGO_PKG_VERSION_MINOR"),
|
|
env!("CARGO_PKG_VERSION_PATCH"),
|
|
env!("CARGO_PKG_VERSION_PRE"),
|
|
);
|
|
|
|
pub static VERSION_MAJOR: u32 = 0;
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
#[test]
|
|
fn it_works() {
|
|
assert_eq!(2 + 2, 4);
|
|
}
|
|
}
|