postgrpc 0.1.2

A JSON-transcoding-ready gRPC server for querying Postgres databases
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/// Health-checking service that validates all of the other configured services
#[cfg_attr(doc, doc(cfg(feature = "health")))]
#[cfg(any(doc, feature = "health"))]
pub mod health;

/// Postgres service that exposes the basic querying interface
pub mod postgres;

/// Transaction service that enables distributed transactions over a database
#[cfg_attr(doc, doc(cfg(feature = "transaction")))]
#[cfg(any(doc, feature = "transaction"))]
pub mod transaction;