mirror of https://github.com/rwf2/Rocket.git
Update versions and links for updated dependencies.
This commit is contained in:
parent
4151cd46db
commit
31712018bb
|
@ -349,35 +349,35 @@
|
||||||
//! | Kind | Driver | Version | `Poolable` Type | Feature |
|
//! | Kind | Driver | Version | `Poolable` Type | Feature |
|
||||||
//! |----------|-----------------------|-----------|--------------------------------|------------------------|
|
//! |----------|-----------------------|-----------|--------------------------------|------------------------|
|
||||||
//! | MySQL | [Diesel] | `1` | [`diesel::MysqlConnection`] | `diesel_mysql_pool` |
|
//! | MySQL | [Diesel] | `1` | [`diesel::MysqlConnection`] | `diesel_mysql_pool` |
|
||||||
//! | MySQL | [`rust-mysql-simple`] | `16` | [`mysql::conn`] | `mysql_pool` |
|
//! | MySQL | [`rust-mysql-simple`] | `17` | [`mysql::Conn`] | `mysql_pool` |
|
||||||
//! | Postgres | [Diesel] | `1` | [`diesel::PgConnection`] | `diesel_postgres_pool` |
|
//! | Postgres | [Diesel] | `1` | [`diesel::PgConnection`] | `diesel_postgres_pool` |
|
||||||
//! | Postgres | [Rust-Postgres] | `0.15` | [`postgres::Connection`] | `postgres_pool` |
|
//! | Postgres | [Rust-Postgres] | `0.17` | [`postgres::Client`] | `postgres_pool` |
|
||||||
//! | Sqlite | [Diesel] | `1` | [`diesel::SqliteConnection`] | `diesel_sqlite_pool` |
|
//! | Sqlite | [Diesel] | `1` | [`diesel::SqliteConnection`] | `diesel_sqlite_pool` |
|
||||||
//! | Sqlite | [`Rustqlite`] | `0.16` | [`rusqlite::Connection`] | `sqlite_pool` |
|
//! | Sqlite | [`Rusqlite`] | `0.16` | [`rusqlite::Connection`] | `sqlite_pool` |
|
||||||
//! | Neo4j | [`rusted_cypher`] | `1` | [`rusted_cypher::GraphClient`] | `cypher_pool` |
|
//! | Neo4j | [`rusted_cypher`] | `1` | [`rusted_cypher::GraphClient`] | `cypher_pool` |
|
||||||
//! | Redis | [`redis-rs`] | `0.10` | [`redis::Connection`] | `redis_pool` |
|
//! | Redis | [`redis-rs`] | `0.13` | [`redis::Connection`] | `redis_pool` |
|
||||||
//! | MongoDB | [`mongodb`] | `0.3.12` | [`mongodb::db::Database`] | `mongodb_pool` |
|
//! | MongoDB | [`mongodb`] | `0.3.12` | [`mongodb::db::Database`] | `mongodb_pool` |
|
||||||
//! | Memcache | [`memcache`] | `0.11` | [`memcache::Client`] | `memcache_pool` |
|
//! | Memcache | [`memcache`] | `0.14` | [`memcache::Client`] | `memcache_pool` |
|
||||||
//!
|
//!
|
||||||
//! [Diesel]: https://diesel.rs
|
//! [Diesel]: https://diesel.rs
|
||||||
//! [`redis::Connection`]: https://docs.rs/redis/0.9.0/redis/struct.Connection.html
|
//! [`redis::Connection`]: https://docs.rs/redis/0.13.0/redis/struct.Connection.html
|
||||||
//! [`rusted_cypher::GraphClient`]: https://docs.rs/rusted_cypher/1.1.0/rusted_cypher/graph/struct.GraphClient.html
|
//! [`rusted_cypher::GraphClient`]: https://docs.rs/rusted_cypher/1.1.0/rusted_cypher/graph/struct.GraphClient.html
|
||||||
//! [`rusqlite::Connection`]: https://docs.rs/rusqlite/0.16.0/rusqlite/struct.Connection.html
|
//! [`rusqlite::Connection`]: https://docs.rs/rusqlite/0.16.0/rusqlite/struct.Connection.html
|
||||||
//! [`diesel::SqliteConnection`]: http://docs.diesel.rs/diesel/prelude/struct.SqliteConnection.html
|
//! [`diesel::SqliteConnection`]: http://docs.diesel.rs/diesel/prelude/struct.SqliteConnection.html
|
||||||
//! [`postgres::Connection`]: https://docs.rs/postgres/0.15.2/postgres/struct.Connection.html
|
//! [`postgres::Client`]: https://docs.rs/postgres/0.17/postgres/struct.Client.html
|
||||||
//! [`diesel::PgConnection`]: http://docs.diesel.rs/diesel/pg/struct.PgConnection.html
|
//! [`diesel::PgConnection`]: http://docs.diesel.rs/diesel/pg/struct.PgConnection.html
|
||||||
//! [`mysql::conn`]: https://docs.rs/mysql/14.0.0/mysql/struct.Conn.html
|
//! [`mysql::Conn`]: https://docs.rs/mysql/17/mysql/struct.Conn.html
|
||||||
//! [`diesel::MysqlConnection`]: http://docs.diesel.rs/diesel/mysql/struct.MysqlConnection.html
|
//! [`diesel::MysqlConnection`]: http://docs.diesel.rs/diesel/mysql/struct.MysqlConnection.html
|
||||||
//! [`redis-rs`]: https://github.com/mitsuhiko/redis-rs
|
//! [`redis-rs`]: https://github.com/mitsuhiko/redis-rs
|
||||||
//! [`rusted_cypher`]: https://github.com/livioribeiro/rusted-cypher
|
//! [`rusted_cypher`]: https://github.com/livioribeiro/rusted-cypher
|
||||||
//! [`Rustqlite`]: https://github.com/jgallagher/rusqlite
|
//! [`Rusqlite`]: https://github.com/jgallagher/rusqlite
|
||||||
//! [Rust-Postgres]: https://github.com/sfackler/rust-postgres
|
//! [Rust-Postgres]: https://github.com/sfackler/rust-postgres
|
||||||
//! [`rust-mysql-simple`]: https://github.com/blackbeam/rust-mysql-simple
|
//! [`rust-mysql-simple`]: https://github.com/blackbeam/rust-mysql-simple
|
||||||
//! [`diesel::PgConnection`]: http://docs.diesel.rs/diesel/pg/struct.PgConnection.html
|
//! [`diesel::PgConnection`]: http://docs.diesel.rs/diesel/pg/struct.PgConnection.html
|
||||||
//! [`mongodb`]: https://github.com/mongodb-labs/mongo-rust-driver-prototype
|
//! [`mongodb`]: https://github.com/mongodb-labs/mongo-rust-driver-prototype
|
||||||
//! [`mongodb::db::Database`]: https://docs.rs/mongodb/0.3.12/mongodb/db/type.Database.html
|
//! [`mongodb::db::Database`]: https://docs.rs/mongodb/0.3.12/mongodb/db/type.Database.html
|
||||||
//! [`memcache`]: https://github.com/aisk/rust-memcache
|
//! [`memcache`]: https://github.com/aisk/rust-memcache
|
||||||
//! [`memcache::Client`]: https://docs.rs/memcache/0.11.0/memcache/struct.Client.html
|
//! [`memcache::Client`]: https://docs.rs/memcache/0.14/memcache/struct.Client.html
|
||||||
//!
|
//!
|
||||||
//! The above table lists all the supported database adapters in this library.
|
//! The above table lists all the supported database adapters in this library.
|
||||||
//! In order to use particular `Poolable` type that's included in this library,
|
//! In order to use particular `Poolable` type that's included in this library,
|
||||||
|
|
|
@ -66,10 +66,10 @@
|
||||||
//!
|
//!
|
||||||
//! | Engine | Version | Extension |
|
//! | Engine | Version | Extension |
|
||||||
//! |--------------|---------|-----------|
|
//! |--------------|---------|-----------|
|
||||||
//! | [Tera] | 0.11 | `.tera` |
|
//! | [Tera] | 1 | `.tera` |
|
||||||
//! | [Handlebars] | 2 | `.hbs` |
|
//! | [Handlebars] | 2 | `.hbs` |
|
||||||
//!
|
//!
|
||||||
//! [Tera]: https://docs.rs/crate/tera/0.11
|
//! [Tera]: https://docs.rs/crate/tera/1
|
||||||
//! [Handlebars]: https://docs.rs/crate/handlebars/2
|
//! [Handlebars]: https://docs.rs/crate/handlebars/2
|
||||||
//!
|
//!
|
||||||
//! Any file that ends with one of these extension will be discovered and
|
//! Any file that ends with one of these extension will be discovered and
|
||||||
|
|
|
@ -181,36 +181,36 @@ Presently, Rocket provides built-in support for the following databases:
|
||||||
| Kind | Driver | Version | `Poolable` Type | Feature |
|
| Kind | Driver | Version | `Poolable` Type | Feature |
|
||||||
|----------|-----------------------|-----------|--------------------------------|------------------------|
|
|----------|-----------------------|-----------|--------------------------------|------------------------|
|
||||||
| MySQL | [Diesel] | `1` | [`diesel::MysqlConnection`] | `diesel_mysql_pool` |
|
| MySQL | [Diesel] | `1` | [`diesel::MysqlConnection`] | `diesel_mysql_pool` |
|
||||||
| MySQL | [`rust-mysql-simple`] | `16` | [`mysql::conn`] | `mysql_pool` |
|
| MySQL | [`rust-mysql-simple`] | `17` | [`mysql::Conn`] | `mysql_pool` |
|
||||||
| Postgres | [Diesel] | `1` | [`diesel::PgConnection`] | `diesel_postgres_pool` |
|
| Postgres | [Diesel] | `1` | [`diesel::PgConnection`] | `diesel_postgres_pool` |
|
||||||
| Postgres | [Rust-Postgres] | `0.15` | [`postgres::Connection`] | `postgres_pool` |
|
| Postgres | [Rust-Postgres] | `0.17` | [`postgres::Client`] | `postgres_pool` |
|
||||||
| Sqlite | [Diesel] | `1` | [`diesel::SqliteConnection`] | `diesel_sqlite_pool` |
|
| Sqlite | [Diesel] | `1` | [`diesel::SqliteConnection`] | `diesel_sqlite_pool` |
|
||||||
| Sqlite | [`Rustqlite`] | `0.16` | [`rusqlite::Connection`] | `sqlite_pool` |
|
| Sqlite | [`Rusqlite`] | `0.16` | [`rusqlite::Connection`] | `sqlite_pool` |
|
||||||
| Neo4j | [`rusted_cypher`] | `1` | [`rusted_cypher::GraphClient`] | `cypher_pool` |
|
| Neo4j | [`rusted_cypher`] | `1` | [`rusted_cypher::GraphClient`] | `cypher_pool` |
|
||||||
| Redis | [`redis-rs`] | `0.10` | [`redis::Connection`] | `redis_pool` |
|
| Redis | [`redis-rs`] | `0.13` | [`redis::Connection`] | `redis_pool` |
|
||||||
| MongoDB | [`mongodb`] | `0.3.12` | [`mongodb::db::Database`] | `mongodb_pool` |
|
| MongoDB | [`mongodb`] | `0.3.12` | [`mongodb::db::Database`] | `mongodb_pool` |
|
||||||
| Memcache | [`memcache`] | `0.11` | [`memcache::Client`] | `memcache_pool` |
|
| Memcache | [`memcache`] | `0.14` | [`memcache::Client`] | `memcache_pool` |
|
||||||
|
|
||||||
[`r2d2`]: https://crates.io/crates/r2d2
|
[`r2d2`]: https://crates.io/crates/r2d2
|
||||||
[Diesel]: https://diesel.rs
|
[Diesel]: https://diesel.rs
|
||||||
[`redis::Connection`]: https://docs.rs/redis/0.10.0/redis/struct.Connection.html
|
[`redis::Connection`]: https://docs.rs/redis/0.13.0/redis/struct.Connection.html
|
||||||
[`rusted_cypher::GraphClient`]: https://docs.rs/rusted_cypher/1.1.0/rusted_cypher/graph/struct.GraphClient.html
|
[`rusted_cypher::GraphClient`]: https://docs.rs/rusted_cypher/1.1.0/rusted_cypher/graph/struct.GraphClient.html
|
||||||
[`rusqlite::Connection`]: https://docs.rs/rusqlite/0.16.0/rusqlite/struct.Connection.html
|
[`rusqlite::Connection`]: https://docs.rs/rusqlite/0.16.0/rusqlite/struct.Connection.html
|
||||||
[`diesel::SqliteConnection`]: http://docs.diesel.rs/diesel/prelude/struct.SqliteConnection.html
|
[`diesel::SqliteConnection`]: http://docs.diesel.rs/diesel/prelude/struct.SqliteConnection.html
|
||||||
[`postgres::Connection`]: https://docs.rs/postgres/0.15.2/postgres/struct.Connection.html
|
[`postgres::Client`]: https://docs.rs/postgres/0.17/postgres/struct.Client.html
|
||||||
[`diesel::PgConnection`]: http://docs.diesel.rs/diesel/pg/struct.PgConnection.html
|
[`diesel::PgConnection`]: http://docs.diesel.rs/diesel/pg/struct.PgConnection.html
|
||||||
[`mysql::conn`]: https://docs.rs/mysql/16.0.0/mysql/struct.Conn.html
|
[`mysql::Conn`]: https://docs.rs/mysql/17/mysql/struct.Conn.html
|
||||||
[`diesel::MysqlConnection`]: http://docs.diesel.rs/diesel/mysql/struct.MysqlConnection.html
|
[`diesel::MysqlConnection`]: http://docs.diesel.rs/diesel/mysql/struct.MysqlConnection.html
|
||||||
[`redis-rs`]: https://github.com/mitsuhiko/redis-rs
|
[`redis-rs`]: https://github.com/mitsuhiko/redis-rs
|
||||||
[`rusted_cypher`]: https://github.com/livioribeiro/rusted-cypher
|
[`rusted_cypher`]: https://github.com/livioribeiro/rusted-cypher
|
||||||
[`Rustqlite`]: https://github.com/jgallagher/rusqlite
|
[`Rusqlite`]: https://github.com/jgallagher/rusqlite
|
||||||
[Rust-Postgres]: https://github.com/sfackler/rust-postgres
|
[Rust-Postgres]: https://github.com/sfackler/rust-postgres
|
||||||
[`rust-mysql-simple`]: https://github.com/blackbeam/rust-mysql-simple
|
[`rust-mysql-simple`]: https://github.com/blackbeam/rust-mysql-simple
|
||||||
[`diesel::PgConnection`]: http://docs.diesel.rs/diesel/pg/struct.PgConnection.html
|
[`diesel::PgConnection`]: http://docs.diesel.rs/diesel/pg/struct.PgConnection.html
|
||||||
[`mongodb`]: https://github.com/mongodb-labs/mongo-rust-driver-prototype
|
[`mongodb`]: https://github.com/mongodb-labs/mongo-rust-driver-prototype
|
||||||
[`mongodb::db::Database`]: https://docs.rs/mongodb/0.3.12/mongodb/db/type.Database.html
|
[`mongodb::db::Database`]: https://docs.rs/mongodb/0.3.12/mongodb/db/type.Database.html
|
||||||
[`memcache`]: https://github.com/aisk/rust-memcache
|
[`memcache`]: https://github.com/aisk/rust-memcache
|
||||||
[`memcache::Client`]: https://docs.rs/memcache/0.11.0/memcache/struct.Client.html
|
[`memcache::Client`]: https://docs.rs/memcache/0.14/memcache/struct.Client.html
|
||||||
|
|
||||||
### Usage
|
### Usage
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue