picodata_plugin/
lib.rs

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