mirror of https://github.com/rwf2/Rocket.git
Fix, clarify driver version numbers in 'db_pools'.
This commit is contained in:
parent
9314352eef
commit
5f232d147c
|
@ -105,10 +105,10 @@
|
||||||
//!
|
//!
|
||||||
//! ## `deadpool` (v0.9)
|
//! ## `deadpool` (v0.9)
|
||||||
//!
|
//!
|
||||||
//! | Database | Feature | [`Pool`] Type | [`Connection`] Deref |
|
//! | Database | Feature | [`Pool`] Type | [`Connection`] Deref |
|
||||||
//! |----------|---------------------|-----------------------------|---------------------------------------|
|
//! |----------|-----------------------------|-----------------------------|--------------------------------------|
|
||||||
//! | Postgres | `deadpool_postgres` | [`deadpool_postgres::Pool`] | [`deadpool_postgres::ClientWrapper`] |
|
//! | Postgres | `deadpool_postgres` (v0.10) | [`deadpool_postgres::Pool`] | [`deadpool_postgres::ClientWrapper`] |
|
||||||
//! | Redis | `deadpool_redis` | [`deadpool_redis::Pool`] | [`deadpool_redis::Connection`] |
|
//! | Redis | `deadpool_redis` (v0.11) | [`deadpool_redis::Pool`] | [`deadpool_redis::Connection`] |
|
||||||
//!
|
//!
|
||||||
//! On shutdown, new connections are denied. Shutdown _does not_ wait for
|
//! On shutdown, new connections are denied. Shutdown _does not_ wait for
|
||||||
//! connections to be returned.
|
//! connections to be returned.
|
||||||
|
@ -151,7 +151,7 @@
|
||||||
//!
|
//!
|
||||||
//! ```toml
|
//! ```toml
|
||||||
//! [dependencies.sqlx]
|
//! [dependencies.sqlx]
|
||||||
//! version = "0.5"
|
//! version = "0.6"
|
||||||
//! default-features = false
|
//! default-features = false
|
||||||
//! features = ["macros", "offline", "migrate"]
|
//! features = ["macros", "offline", "migrate"]
|
||||||
//!
|
//!
|
||||||
|
|
Loading…
Reference in New Issue