Go to file
2023-01-08 12:21:42 +01:00
.github bump ci version 2022-07-18 20:13:48 -04:00
codegen Add multirange kind and run cargo fmt 2022-11-21 18:40:37 -05:00
docker Fix tests, replace match with matches! 2022-03-16 21:23:15 -05:00
postgres Update criterion requirement from 0.3 to 0.4 2022-09-12 13:19:27 +00:00
postgres-derive Release v0.4.3 2022-09-07 19:01:27 -04:00
postgres-derive-test more clippy 2022-11-21 15:25:39 -08:00
postgres-native-tls Chore: remove unused futures crate for openssl and native-tls 2022-08-14 23:43:12 +08:00
postgres-openssl Fix: run cargo fmt 2022-08-15 00:37:47 +08:00
postgres-protocol Clippy 2022-12-30 08:43:24 -05:00
postgres-types Add multirange kind and run cargo fmt 2022-11-21 18:40:37 -05:00
test Switch CI to CircleCI 2.0 2017-07-08 19:41:24 -07:00
tokio-postgres add batch_execute to generic client 2023-01-08 12:21:42 +01: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.