Skip to content

Commit d10ee54

Browse files
committed
Bump diesel dependency to 2.3
1 parent 6e76dfd commit d10ee54

File tree

4 files changed

+8
-24
lines changed

4 files changed

+8
-24
lines changed

Cargo.toml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,11 @@ mobc = { version = ">=0.7,<0.10", optional = true }
3838
scoped-futures = { version = "0.1", features = ["std"] }
3939

4040
[dependencies.diesel]
41-
version = "~2.2.0"
41+
version = "2.3.0"
4242
default-features = false
4343
features = [
4444
"i-implement-a-third-party-backend-and-opt-into-breaking-changes",
4545
]
46-
git = "https://github.com/diesel-rs/diesel"
47-
branch = "master"
4846

4947
[dev-dependencies]
5048
tokio = { version = "1.12.0", features = ["rt", "macros", "rt-multi-thread"] }
@@ -53,18 +51,14 @@ chrono = "0.4"
5351
assert_matches = "1.0.1"
5452

5553
[dev-dependencies.diesel]
56-
version = "~2.2.0"
54+
version = "2.3.0"
5755
default-features = false
5856
features = [
5957
"chrono"
6058
]
61-
git = "https://github.com/diesel-rs/diesel"
62-
branch = "master"
6359

6460
[dev-dependencies.diesel_migrations]
65-
version = "2.2.0"
66-
git = "https://github.com/diesel-rs/diesel"
67-
branch = "master"
61+
version = "2.3.0"
6862

6963
[features]
7064
default = []

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,5 @@ tokio-postgres-rustls = "0.13.0"
1616

1717

1818
[dependencies.diesel]
19-
version = "2.2.0"
19+
version = "2.3.0"
2020
default-features = false
21-
git = "https://github.com/diesel-rs/diesel"
22-
branch = "master"

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

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,8 @@ tokio-postgres = "0.7.7"
1515
tokio-postgres-rustls = "0.13.0"
1616

1717
[dependencies.diesel]
18-
version = "2.2.0"
18+
version = "2.3.0"
1919
default-features = false
20-
git = "https://github.com/diesel-rs/diesel"
21-
branch = "master"
2220

2321
[dependencies.diesel_migrations]
24-
version = "2.2.0"
25-
git = "https://github.com/diesel-rs/diesel"
26-
branch = "master"
22+
version = "2.3.0"

examples/sync-wrapper/Cargo.toml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,12 @@ futures-util = "0.3.21"
1111
tokio = { version = "1.2.0", default-features = false, features = ["macros", "rt-multi-thread"] }
1212

1313
[dependencies.diesel]
14-
version = "2.2.0"
14+
version = "2.3.0"
1515
default-features = false
1616
features = ["returning_clauses_for_sqlite_3_35"]
17-
git = "https://github.com/diesel-rs/diesel"
18-
branch = "master"
1917

2018
[dependencies.diesel_migrations]
21-
version = "2.2.0"
22-
git = "https://github.com/diesel-rs/diesel"
23-
branch = "master"
19+
version = "2.3.0"
2420

2521
[features]
2622
default = ["sqlite"]

0 commit comments

Comments
 (0)