Skip to main content

pg_srv/
lib.rs

1//! Bindings for emulating a PostgreSQL server (protocol v3).
2//! You can find overview of the protocol at
3//! <https://www.postgresql.org/docs/10/protocol.html>
4
5mod decoding;
6mod encoding;
7
8pub mod buffer;
9pub mod error;
10pub mod extended;
11pub mod pg_type;
12pub mod protocol;
13pub mod values;
14
15pub use buffer::*;
16pub use decoding::*;
17pub use encoding::*;
18pub use error::*;
19pub use extended::*;
20pub use pg_type::*;
21pub use values::*;