kdb-connection 0.1.0

kDB connection.
Documentation
#![doc = include_str!("../README.MD")]

mod connection;
mod dbc;
mod errors;
#[cfg(feature = "http")]
mod http;
#[cfg(feature = "mqtt")]
mod mqtt;
pub mod prelude;
pub mod queries;
#[cfg(test)]
pub(crate) mod test;
pub(crate) mod value;

pub use crate::prelude::*;

/// Use HTTP to connect to the kDB Server
#[cfg(feature = "http")]
pub type HttpConnection = http::Connection;

/// Use MQTT to connect to the kDB Server
#[cfg(feature = "mqtt")]
pub type MqttConnection = mqtt::Connection;

pub use {
    connection::Connection,
    value::{Value, ValueArray, ValueHash},
};