boltr 0.1.1

Pure-Rust Bolt v5.x wire protocol library
Documentation
1
2
3
4
5
6
7
8
9
//! Bolt client: connects to a Bolt server and runs queries.
//!
//! Feature-gated behind `client`. Primarily intended for integration testing.

mod connection;
mod session;

pub use connection::BoltConnection;
pub use session::BoltSession;