mirror of https://github.com/rwf2/Rocket.git
Update 'sqlx' to 0.8, 'rusqlite' to 0.31.
This commit is contained in:
parent
628cc2a2f6
commit
39c90481e7
|
@ -75,7 +75,7 @@ default-features = false
|
|||
optional = true
|
||||
|
||||
[dependencies.sqlx]
|
||||
version = "0.7"
|
||||
version = "0.8"
|
||||
default-features = false
|
||||
features = ["runtime-tokio-rustls"]
|
||||
optional = true
|
||||
|
|
|
@ -31,8 +31,8 @@ diesel = { version = "2.0.0", default-features = false, optional = true }
|
|||
postgres = { version = "0.19", optional = true }
|
||||
r2d2_postgres = { version = "0.18", optional = true }
|
||||
|
||||
rusqlite = { version = "0.29.0", optional = true }
|
||||
r2d2_sqlite = { version = "0.22.0", optional = true }
|
||||
rusqlite = { version = "0.31.0", optional = true }
|
||||
r2d2_sqlite = { version = "0.24.0", optional = true }
|
||||
|
||||
memcache = { version = "0.15.2", optional = true }
|
||||
r2d2-memcache = { version = "0.6", optional = true }
|
||||
|
|
|
@ -317,7 +317,7 @@
|
|||
//! | Postgres | [Diesel] | `2` | [`diesel::PgConnection`] | `diesel_postgres_pool` |
|
||||
//! | MySQL | [Diesel] | `2` | [`diesel::MysqlConnection`] | `diesel_mysql_pool` |
|
||||
//! | Postgres | [Rust-Postgres] | `0.19` | [`postgres::Client`] | `postgres_pool` |
|
||||
//! | Sqlite | [`Rusqlite`] | `0.27` | [`rusqlite::Connection`] | `sqlite_pool` |
|
||||
//! | Sqlite | [`Rusqlite`] | `0.31` | [`rusqlite::Connection`] | `sqlite_pool` |
|
||||
//! | Memcache | [`memcache`] | `0.15` | [`memcache::Client`] | `memcache_pool` |
|
||||
//!
|
||||
//! [Diesel]: https://diesel.rs
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
{
|
||||
"name": "id",
|
||||
"ordinal": 0,
|
||||
"type_info": "Int64"
|
||||
"type_info": "Integer"
|
||||
},
|
||||
{
|
||||
"name": "title",
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
{
|
||||
"name": "id",
|
||||
"ordinal": 0,
|
||||
"type_info": "Int64"
|
||||
"type_info": "Integer"
|
||||
}
|
||||
],
|
||||
"parameters": {
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
{
|
||||
"name": "id",
|
||||
"ordinal": 0,
|
||||
"type_info": "Int64"
|
||||
"type_info": "Integer"
|
||||
}
|
||||
],
|
||||
"parameters": {
|
||||
|
|
|
@ -11,7 +11,7 @@ diesel = { version = "2", features = ["returning_clauses_for_sqlite_3_35"] }
|
|||
diesel_migrations = "2"
|
||||
|
||||
[dependencies.sqlx]
|
||||
version = "0.7.0"
|
||||
version = "0.8.0"
|
||||
default-features = false
|
||||
features = ["macros", "migrate"]
|
||||
|
||||
|
|
Loading…
Reference in New Issue