besu 0.0.1

A typesafe, async, and database-agnostic query builder for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod delete;
mod execute;
mod insert;
mod select;
mod update;

pub use delete::{Delete, DeleteOperation};
pub use execute::Execute;
pub use insert::{Insert, InsertOperation};
pub use select::{Select, SelectOperation};
pub use update::{Update, UpdateOperation};