aerospike 2.0.0

Aerospike Client for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[cfg(all(not(feature = "async"), not(feature = "sync")))]
compile_error!("Please select a client version: [async, sync]");

#[cfg(all(feature = "async", feature = "sync"))]
compile_error!("Please select only one client version");

#[cfg(all(feature = "async", not(feature = "sync")))]
pub use aerospike_core::*;

#[cfg(all(not(feature = "async"), feature = "sync"))]
pub use aerospike_sync::*;