Go to file
2023-07-28 17:09:51 -05:00
.github clean up wasm32 test 2023-06-10 10:21:34 -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 fix: AAAAA 2023-07-28 17:09:51 -05:00
postgres-derive Merge pull request #1008 from JaydenElliott/feature/rename_all_attr 2023-06-10 07:36:30 -07:00
postgres-derive-test Rename_all attribute documentation 2023-03-28 22:25:50 +11: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 gate wasm support behind feature flag 2023-06-07 20:53:16 -04:00
postgres-types feat: compile-time assoc of rust <> postgres types 2023-07-07 12:17:52 -05:00
test Switch CI to CircleCI 2.0 2017-07-08 19:41:24 -07:00
tokio-postgres fix: AAAAA 2023-07-28 17:09:51 -05:00
.gitignore Update to protocol 0.2 2016-12-18 16:13:12 -08:00
Cargo.toml clean up wasm32 test 2023-06-10 10:21:34 -04: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.