redisgraphio 0.2.0

Client library for working with redis graph
Documentation
#![doc = include_str!("../Readme.md")]
#![deny(missing_docs)]

mod parse;
mod sync;
mod helpers;
mod types;
#[cfg(test)]
mod tests;

pub use crate::types::*;
pub use crate::sync::GraphCommands;
pub use crate::parse::*;
pub use crate::helpers::{from_graph_value, create_rediserror};

#[cfg(any(feature = "tokio-comp", feature = "async-std-comp"))]
mod aio;

#[cfg(any(feature = "tokio-comp", feature = "async-std-comp"))]
pub use crate::aio::AsyncGraphCommands;