A runtime-independent, asynchronous PostgreSQL client.
[](https://github.com/Hexilee/async-postgres/actions) [](https://codecov.io/gh/Hexilee/async-postgres) [](https://docs.rs/async-postgres) [](https://crates.io/crates/async-postgres) [](https://crates.io/crates/async-postgres) [](https://blog.rust-lang.org/2019/12/19/Rust-1.40.0.html) [](https://github.com/Hexilee/async-postgres/blob/master/LICENSE)
This crate is a wrapper of tokio-postgres.
Runtime-independent, can be used on any async runtime.
Almost the same with tokio-postgres.
```rust use asyncpostgres::connect; use std::error::Error; use asyncstd::task::spawn;
async fn play() -> Result<(), Box
```rust use asyncpostgres::connecttls; use nativetls::{Certificate, TlsConnector}; use postgresnativetls::MakeTlsConnector; use std::fs; use std::error::Error; use asyncstd::task::spawn;
async fn play() -> Result<(), Box
Almost the same with tokio-postgres, you can see a live benchmark here.
Running tests needs a postgres server and environment variables:
- TCP_URL="postgresql:///<db>?host=<tcp host>&port=<port>&user=<user>&password=<passwd>"
- UDS_URL="postgresql:///<db>?host=<postgres uds dir>&port=<port>&user=<user>&password=<passwd>"