1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
cfg_if::cfg_if! {
    if #[cfg(all(feature = "async_std", not(feature = "tokio")))] {
        pub mod graph;
        pub use graph::{NebulaGraphClientConfiguration, NebulaGraphConnectionManager};

        pub mod v2;
    } else if #[cfg(all(not(feature = "async_std"), feature = "tokio"))] {
        pub mod graph;
        pub use graph::{NebulaGraphClientConfiguration, NebulaGraphConnectionManager};

        pub mod v2;
    }
}