No description
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
Daniel Baumann 1d598ad614
Releasing fastforward version 0.6.12-1~ffwd13+u1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2026-08-04 18:35:10 +02:00
debian Releasing fastforward version 0.6.12-1~ffwd13+u1. 2026-08-04 18:35:10 +02:00
src Merging upstream version 0.6.12. 2026-08-04 18:33:22 +02:00
.cargo_vcs_info.json Merging upstream version 0.6.12. 2026-08-04 18:33:22 +02:00
Cargo.lock Merging upstream version 0.6.12. 2026-08-04 18:33:22 +02:00
Cargo.toml Merging upstream version 0.6.12. 2026-08-04 18:33:22 +02:00
Cargo.toml.orig Merging upstream version 0.6.12. 2026-08-04 18:33:22 +02:00
CHANGELOG.md Merging upstream version 0.6.12. 2026-08-04 18:33:22 +02:00
LICENSE-APACHE Adding upstream version 0.6.8. 2026-08-04 18:32:00 +02:00
LICENSE-MIT Adding upstream version 0.6.8. 2026-08-04 18:32:00 +02:00
README.md Adding upstream version 0.6.8. 2026-08-04 18:32:00 +02: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.