Skip to content

Commit

Permalink
bump sqlx verion in doc comments/guide, remove offline feature
Browse files Browse the repository at this point in the history
  • Loading branch information
olback committed Aug 15, 2023
1 parent 4da926d commit 0432163
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions contrib/db_pools/lib/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -160,9 +160,9 @@
//!
//! ```toml
//! [dependencies.sqlx]
//! version = "0.6"
//! version = "0.7"
//! default-features = false
//! features = ["macros", "offline", "migrate"]
//! features = ["macros", "migrate"]
//!
//! [dependencies.rocket_db_pools]
//! version = "=0.1.0-rc.3"
Expand Down
2 changes: 1 addition & 1 deletion examples/databases/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ diesel_migrations = "2"
[dependencies.sqlx]
version = "0.7.0"
default-features = false
features = ["macros", "offline", "migrate"]
features = ["macros", "migrate"]

[dependencies.rocket_db_pools]
path = "../../contrib/db_pools/lib/"
Expand Down
4 changes: 2 additions & 2 deletions site/guide/6-state.md
Original file line number Diff line number Diff line change
Expand Up @@ -294,9 +294,9 @@ features enabled in `Cargo.toml`:

```toml
[dependencies.sqlx]
version = "0.6"
version = "0.7"
default-features = false
features = ["macros", "offline", "migrate"]
features = ["macros", "migrate"]

[dependencies.rocket_db_pools]
version = "=0.1.0-rc.3"
Expand Down

0 comments on commit 0432163

Please sign in to comment.