mirror of https://github.com/rwf2/Rocket.git
Fix library versions in database contrib docs.
This commit is contained in:
parent
6f5725b83d
commit
b109d151a6
|
@ -349,13 +349,13 @@
|
|||
//! | Kind | Driver | Version | `Poolable` Type | Feature |
|
||||
//! |----------|-----------------------|-----------|--------------------------------|------------------------|
|
||||
//! | MySQL | [Diesel] | `1` | [`diesel::MysqlConnection`] | `diesel_mysql_pool` |
|
||||
//! | MySQL | [`rust-mysql-simple`] | `16` | [`mysql::conn`] | `mysql_pool` |
|
||||
//! | MySQL | [`rust-mysql-simple`] | `14` | [`mysql::conn`] | `mysql_pool` |
|
||||
//! | Postgres | [Diesel] | `1` | [`diesel::PgConnection`] | `diesel_postgres_pool` |
|
||||
//! | Postgres | [Rust-Postgres] | `0.15` | [`postgres::Connection`] | `postgres_pool` |
|
||||
//! | Sqlite | [Diesel] | `1` | [`diesel::SqliteConnection`] | `diesel_sqlite_pool` |
|
||||
//! | Sqlite | [`Rustqlite`] | `0.16` | [`rusqlite::Connection`] | `sqlite_pool` |
|
||||
//! | Sqlite | [`Rustqlite`] | `0.14` | [`rusqlite::Connection`] | `sqlite_pool` |
|
||||
//! | Neo4j | [`rusted_cypher`] | `1` | [`rusted_cypher::GraphClient`] | `cypher_pool` |
|
||||
//! | Redis | [`redis-rs`] | `0.10` | [`redis::Connection`] | `redis_pool` |
|
||||
//! | Redis | [`redis-rs`] | `0.9` | [`redis::Connection`] | `redis_pool` |
|
||||
//! | MongoDB | [`mongodb`] | `0.3.12` | [`mongodb::db::Database`] | `mongodb_pool` |
|
||||
//! | Memcache | [`memcache`] | `0.11` | [`memcache::Client`] | `memcache_pool` |
|
||||
//!
|
||||
|
|
|
@ -231,13 +231,13 @@ Presently, Rocket provides built-in support for the following databases:
|
|||
| Kind | Driver | Version | `Poolable` Type | Feature |
|
||||
|----------|-----------------------|-----------|--------------------------------|------------------------|
|
||||
| MySQL | [Diesel] | `1` | [`diesel::MysqlConnection`] | `diesel_mysql_pool` |
|
||||
| MySQL | [`rust-mysql-simple`] | `16` | [`mysql::conn`] | `mysql_pool` |
|
||||
| MySQL | [`rust-mysql-simple`] | `14` | [`mysql::conn`] | `mysql_pool` |
|
||||
| Postgres | [Diesel] | `1` | [`diesel::PgConnection`] | `diesel_postgres_pool` |
|
||||
| Postgres | [Rust-Postgres] | `0.15` | [`postgres::Connection`] | `postgres_pool` |
|
||||
| Sqlite | [Diesel] | `1` | [`diesel::SqliteConnection`] | `diesel_sqlite_pool` |
|
||||
| Sqlite | [`Rustqlite`] | `0.16` | [`rusqlite::Connection`] | `sqlite_pool` |
|
||||
| Sqlite | [`Rustqlite`] | `0.14` | [`rusqlite::Connection`] | `sqlite_pool` |
|
||||
| Neo4j | [`rusted_cypher`] | `1` | [`rusted_cypher::GraphClient`] | `cypher_pool` |
|
||||
| Redis | [`redis-rs`] | `0.10` | [`redis::Connection`] | `redis_pool` |
|
||||
| Redis | [`redis-rs`] | `0.9` | [`redis::Connection`] | `redis_pool` |
|
||||
| MongoDB | [`mongodb`] | `0.3.12` | [`mongodb::db::Database`] | `mongodb_pool` |
|
||||
| Memcache | [`memcache`] | `0.11` | [`memcache::Client`] | `memcache_pool` |
|
||||
|
||||
|
|
Loading…
Reference in New Issue