Go to file
dependabot[bot] e5f7f8e291
Update criterion requirement from 0.3 to 0.4
Updates the requirements on [criterion](https://github.com/bheisler/criterion.rs) to permit the latest version.
- [Release notes](https://github.com/bheisler/criterion.rs/releases)
- [Changelog](https://github.com/bheisler/criterion.rs/blob/master/CHANGELOG.md)
- [Commits](https://github.com/bheisler/criterion.rs/compare/0.3.0...0.4.0)

---
updated-dependencies:
- dependency-name: criterion
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-09-12 13:19:27 +00:00
.github bump ci version 2022-07-18 20:13:48 -04:00
codegen Upgrade phf 2022-07-18 20:04:00 -04: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 derive bounds on generics 2022-09-06 19:26:13 -05: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 Release postgres-protocol v0.6.4 2022-04-30 08:24:30 -04:00
postgres-types Release postgres-types v0.2.4 2022-08-20 15:28:42 -04:00
test Switch CI to CircleCI 2.0 2017-07-08 19:41:24 -07:00
tokio-postgres Update criterion requirement from 0.3 to 0.4 2022-09-12 13:19:27 +00: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.