Skip to content

Commit 2f662b1

Browse files
committed
Update to diesel master now that are all PR's merged
1 parent 29e2231 commit 2f662b1

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ members = [
88
]
99

1010
[replace]
11-
"diesel:1.3.2" = { git = "https://github.com/weiznich/diesel", rev = "d4184dbb85ee" }
12-
"diesel_migrations:1.3.0" = { git = "https://github.com/weiznich/diesel", rev = "d4184dbb85ee" }
13-
"migrations_internals:1.3.0" = { git = "https://github.com/weiznich/diesel", rev = "d4184dbb85ee" }
14-
"migrations_macros:1.3.0" = { git = "https://github.com/weiznich/diesel", rev = "d4184dbb85ee" }
15-
"diesel_derives:1.3.0" = { git = "https://github.com/weiznich/diesel", rev = "d4184dbb85ee" }
11+
"diesel:1.3.3" = { git = "https://github.com/diesel-rs/diesel", rev = "db66040" }
12+
"diesel_migrations:1.3.0" = { git = "https://github.com/diesel-rs/diesel", rev = "db66040" }
13+
"migrations_internals:1.3.0" = { git = "https://github.com/diesel-rs/diesel", rev = "db66040" }
14+
"migrations_macros:1.3.0" = { git = "https://github.com/diesel-rs/diesel", rev = "db66040"}
15+
"diesel_derives:1.3.0" = { git = "https://github.com/diesel-rs/diesel", rev = "db66040" }
1616
"juniper:0.9.2" = { git = "https://github.com/weiznich/juniper", rev = "15cfff0a78" }
1717
"juniper_codegen:0.9.2" = { git = "https://github.com/weiznich/juniper/", rev = "15cfff0a78" }

wundergraph/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = ["Georg Semmler <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66

77
[dependencies]
8-
diesel = { version = "=1.3.2", features = ["r2d2"]}
8+
diesel = { version = "=1.3.3", features = ["r2d2"]}
99
juniper = "=0.9.2"
1010
indexmap = "1"
1111
wundergraph_derive = { path = "../wundergraph_derive" }

wundergraph_bench/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = ["Georg Semmler <[email protected]>"]
55

66
[dependencies]
77
wundergraph = {path = "../wundergraph", default-features = false, features = ["postgres", "chrono"]}
8-
diesel = {version = "=1.3.2", features = ["r2d2", "sqlite", "chrono", "postgres"]}
8+
diesel = {version = "=1.3.3", features = ["r2d2", "sqlite", "chrono", "postgres"]}
99
juniper = "=0.9.2"
1010
actix = "0.7"
1111
actix-web = "0.7"

wundergraph_example/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ version = "0.1.0"
55
license = "MIT OR Apache-2.0"
66

77
[dependencies]
8-
diesel = { version = "=1.3.2", features = ["r2d2", "sqlite", "chrono", "postgres"]}
8+
diesel = { version = "=1.3.3", features = ["r2d2", "sqlite", "chrono", "postgres"]}
99
diesel_migrations = "=1.3.0"
1010
juniper = "=0.9.2"
1111
actix = "0.7"

0 commit comments

Comments
 (0)