Go to file
2022-03-16 21:23:15 -05:00
.github Update ci.yml 2022-01-31 09:11:29 -05:00
codegen Update phf 2021-08-10 20:30:27 -04:00
docker Fix tests, replace match with matches! 2022-03-16 21:23:15 -05:00
postgres Clean up licenses 2021-10-28 19:22:13 -04:00
postgres-derive Add #[postgres(transparent)] 2021-12-30 22:29:07 +01:00
postgres-derive-test Add #[postgres(transparent)] 2021-12-30 22:29:07 +01: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 Fix tests, replace match with matches! 2022-03-16 21:23:15 -05:00
postgres-types Split out ltree,query,txtquery protocol parsers, add tests, rust fmt 2022-03-16 21:23:15 -05:00
test Switch CI to CircleCI 2.0 2017-07-08 19:41:24 -07:00
tokio-postgres Fix tests, replace match with matches! 2022-03-16 21:23:15 -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.