elefant-client 0.1.0

A pure rust implementation of a postgres client that is independent of the executor runtime
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub(crate) mod async_io;
mod error;
pub(crate) mod frame_reader;
mod frontend_p_message;
mod message_reader;
#[cfg(all(test, feature = "futures"))]
mod message_tests;
mod message_writer;
mod messages;
mod password;
mod postgres_connection;
pub mod sasl;

pub use error::*;
pub use frontend_p_message::*;
pub use messages::*;
pub use postgres_connection::*;