Skip to content

Commit 702ae3f

Browse files
committed
Fix diesel_async version in examples
1 parent acc20f4 commit 702ae3f

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

examples/postgres/pooled-with-rustls/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2021"
77

88
[dependencies]
99
diesel = { version = "2.2.0", default-features = false, features = ["postgres"] }
10-
diesel-async = { version = "0.4.0", path = "../../../", features = ["bb8", "postgres"] }
10+
diesel-async = { version = "0.5.0", path = "../../../", features = ["bb8", "postgres"] }
1111
futures-util = "0.3.21"
1212
rustls = "0.23.8"
1313
rustls-native-certs = "0.7.1"

examples/postgres/run-pending-migrations-with-rustls/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2021"
77

88
[dependencies]
99
diesel = { version = "2.2.0", default-features = false, features = ["postgres"] }
10-
diesel-async = { version = "0.4.0", path = "../../../", features = ["bb8", "postgres", "async-connection-wrapper"] }
10+
diesel-async = { version = "0.5.0", path = "../../../", features = ["bb8", "postgres", "async-connection-wrapper"] }
1111
diesel_migrations = "2.2.0"
1212
futures-util = "0.3.21"
1313
rustls = "0.23.10"

examples/sync-wrapper/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ edition = "2021"
66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
77

88
[dependencies]
9-
diesel = { version = "2.1.0", default-features = false, features = ["returning_clauses_for_sqlite_3_35"] }
10-
diesel-async = { version = "0.4.0", path = "../../", features = ["sync-connection-wrapper", "async-connection-wrapper"] }
11-
diesel_migrations = "2.1.0"
9+
diesel = { version = "2.2.0", default-features = false, features = ["returning_clauses_for_sqlite_3_35"] }
10+
diesel-async = { version = "0.5.0", path = "../../", features = ["sync-connection-wrapper", "async-connection-wrapper"] }
11+
diesel_migrations = "2.2.0"
1212
futures-util = "0.3.21"
1313
tokio = { version = "1.2.0", default-features = false, features = ["macros", "rt-multi-thread"] }
1414

0 commit comments

Comments
 (0)