picodata_plugin/
lib.rs

1#![allow(non_local_definitions)] // `#[sabi_trait]` problem
2
3use abi_stable::{rstr, std_types::RStr};
4
5pub mod authentication;
6pub mod background;
7pub mod error_code;
8pub mod internal;
9pub mod interplay;
10pub mod log;
11pub mod metrics;
12pub mod plugin;
13pub mod sql;
14pub mod system;
15pub mod transport;
16pub mod util;
17
18#[no_mangle]
19pub static PICOPLUGIN_VERSION: RStr<'static> = rstr!(env!("CARGO_PKG_VERSION"));
20
21#[cfg(feature = "internal_test")]
22mod test_macros {
23    use super::system::tarantool;
24
25    #[tarantool::test]
26    fn test() {}
27
28    #[tarantool::proc]
29    fn example() {}
30}