Fix, clarify driver version numbers in 'db_pools'.

This commit is contained in:
Sergio Benitez 2023-03-25 08:30:01 -07:00
parent 9314352eef
commit 5f232d147c
1 changed files with 5 additions and 5 deletions

View File

@ -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"]
//! //!