Go to file
Steven Fackler 76cd380e5a
clippy
2021-12-08 18:35:18 -05:00
.github Don't use a built container for test postgres 2021-10-28 19:08:38 -04:00
codegen Update phf 2021-08-10 20:30:27 -04:00
docker Don't use a built container for test postgres 2021-10-28 19:08:38 -04:00
postgres Clean up licenses 2021-10-28 19:22:13 -04:00
postgres-derive Release postgres-derive v0.4.1 2021-11-23 23:50:27 -05:00
postgres-derive-test Fix handling of raw ident fields in derive 2021-11-23 23:40:00 -05:00
postgres-native-tls Clean up licenses 2021-10-28 19:22:13 -04:00
postgres-openssl Clean up licenses 2021-10-28 19:22:13 -04:00
postgres-protocol Update hash crates 2021-12-08 18:30:44 -05:00
postgres-types Clean up licenses 2021-10-28 19:22:13 -04:00
test Switch CI to CircleCI 2.0 2017-07-08 19:41:24 -07:00
tokio-postgres clippy 2021-12-08 18:35:18 -05:00
.gitignore Update to protocol 0.2 2016-12-18 16:13:12 -08:00
Cargo.toml Move binary copy stuff directly into main crate 2019-12-08 18:30:47 -08:00
docker-compose.yml Don't use a built container for test postgres 2021-10-28 19:08:38 -04:00
LICENSE-APACHE Clean up licenses 2021-10-28 19:22:13 -04:00
LICENSE-MIT Clean up licenses 2021-10-28 19:22:13 -04:00
README.md Remove readme badge 2021-03-16 20:48:02 -04:00
THIRD_PARTY Remove src/url.rs from THIRD_PARTY 2021-10-28 19:16:57 -04:00

Rust-Postgres

PostgreSQL support for Rust.

postgres Latest Version

Documentation

A native, synchronous PostgreSQL client.

tokio-postgres Latest Version

Documentation

A native, asynchronous PostgreSQL client.

postgres-types Latest Version

Documentation

Conversions between Rust and Postgres types.

postgres-native-tls Latest Version

Documentation

TLS support for postgres and tokio-postgres via native-tls.

postgres-openssl Latest Version

Documentation

TLS support for postgres and tokio-postgres via openssl.

Running test suite

The test suite requires postgres to be running in the correct configuration. The easiest way to do this is with docker:

  1. Install docker and docker-compose.
    1. On ubuntu: sudo apt install docker.io docker-compose.
  2. Make sure your user has permissions for docker.
    1. On ubuntu: sudo usermod -aG docker $USER
  3. Change to top-level directory of rust-postgres repo.
  4. Run docker-compose up -d.
  5. Run cargo test.
  6. Run docker-compose stop.