mirror of https://github.com/rwf2/Rocket.git
Update 'postgres' dependency to 0.19.
This commit is contained in:
parent
87f03d3b26
commit
59346ccfdc
|
@ -64,9 +64,9 @@ uuid = { version = ">=0.7.0, <0.9.0", optional = true }
|
|||
|
||||
# Database dependencies
|
||||
diesel = { version = "1.0", default-features = false, optional = true }
|
||||
postgres = { version = "0.17", optional = true }
|
||||
postgres = { version = "0.19", optional = true }
|
||||
r2d2 = { version = "0.8", optional = true }
|
||||
r2d2_postgres = { version = "0.16", optional = true }
|
||||
r2d2_postgres = { version = "0.18", optional = true }
|
||||
mysql = { version = "18.0", optional = true }
|
||||
r2d2_mysql = { version = "18.0", optional = true }
|
||||
rusqlite = { version = "0.23", optional = true }
|
||||
|
|
|
@ -322,7 +322,7 @@
|
|||
//! | MySQL | [Diesel] | `1` | [`diesel::MysqlConnection`] | `diesel_mysql_pool` |
|
||||
//! | MySQL | [`rust-mysql-simple`] | `18` | [`mysql::Conn`] | `mysql_pool` |
|
||||
//! | Postgres | [Diesel] | `1` | [`diesel::PgConnection`] | `diesel_postgres_pool` |
|
||||
//! | Postgres | [Rust-Postgres] | `0.17` | [`postgres::Client`] | `postgres_pool` |
|
||||
//! | Postgres | [Rust-Postgres] | `0.19` | [`postgres::Client`] | `postgres_pool` |
|
||||
//! | Sqlite | [Diesel] | `1` | [`diesel::SqliteConnection`] | `diesel_sqlite_pool` |
|
||||
//! | Sqlite | [`Rusqlite`] | `0.23` | [`rusqlite::Connection`] | `sqlite_pool` |
|
||||
//! | Memcache | [`memcache`] | `0.15` | [`memcache::Client`] | `memcache_pool` |
|
||||
|
@ -330,7 +330,7 @@
|
|||
//! [Diesel]: https://diesel.rs
|
||||
//! [`rusqlite::Connection`]: https://docs.rs/rusqlite/0.23.0/rusqlite/struct.Connection.html
|
||||
//! [`diesel::SqliteConnection`]: http://docs.diesel.rs/diesel/prelude/struct.SqliteConnection.html
|
||||
//! [`postgres::Client`]: https://docs.rs/postgres/0.17/postgres/struct.Client.html
|
||||
//! [`postgres::Client`]: https://docs.rs/postgres/0.19/postgres/struct.Client.html
|
||||
//! [`diesel::PgConnection`]: http://docs.diesel.rs/diesel/pg/struct.PgConnection.html
|
||||
//! [`mysql::Conn`]: https://docs.rs/mysql/18/mysql/struct.Conn.html
|
||||
//! [`diesel::MysqlConnection`]: http://docs.diesel.rs/diesel/mysql/struct.MysqlConnection.html
|
||||
|
|
|
@ -231,7 +231,7 @@ Presently, Rocket provides built-in support for the following databases:
|
|||
| MySQL | [Diesel] | `1` | [`diesel::MysqlConnection`] | `diesel_mysql_pool` |
|
||||
| MySQL | [`rust-mysql-simple`] | `18` | [`mysql::Conn`] | `mysql_pool` |
|
||||
| Postgres | [Diesel] | `1` | [`diesel::PgConnection`] | `diesel_postgres_pool` |
|
||||
| Postgres | [Rust-Postgres] | `0.17` | [`postgres::Client`] | `postgres_pool` |
|
||||
| Postgres | [Rust-Postgres] | `0.19` | [`postgres::Client`] | `postgres_pool` |
|
||||
| Sqlite | [Diesel] | `1` | [`diesel::SqliteConnection`] | `diesel_sqlite_pool` |
|
||||
| Sqlite | [`Rusqlite`] | `0.23` | [`rusqlite::Connection`] | `sqlite_pool` |
|
||||
| Memcache | [`memcache`] | `0.15` | [`memcache::Client`] | `memcache_pool` |
|
||||
|
@ -240,7 +240,7 @@ Presently, Rocket provides built-in support for the following databases:
|
|||
[Diesel]: https://diesel.rs
|
||||
[`rusqlite::Connection`]: https://docs.rs/rusqlite/0.23.0/rusqlite/struct.Connection.html
|
||||
[`diesel::SqliteConnection`]: https://docs.diesel.rs/diesel/prelude/struct.SqliteConnection.html
|
||||
[`postgres::Client`]: https://docs.rs/postgres/0.17/postgres/struct.Client.html
|
||||
[`postgres::Client`]: https://docs.rs/postgres/0.19/postgres/struct.Client.html
|
||||
[`diesel::PgConnection`]: https://docs.diesel.rs/diesel/pg/struct.PgConnection.html
|
||||
[`mysql::Conn`]: https://docs.rs/mysql/18/mysql/struct.Conn.html
|
||||
[`diesel::MysqlConnection`]: https://docs.diesel.rs/diesel/mysql/struct.MysqlConnection.html
|
||||
|
|
Loading…
Reference in New Issue