Skip to content

Commit 7deef76

Browse files
committed
Diesel is 0.11.1 not 0.11.0
The build is failing because with an empty Cargo.lock, Diesel is resolving to 0.11.1, but the replace is only for 0.11.0
1 parent fa1cd79 commit 7deef76

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ members = [
1313
]
1414

1515
[replace]
16-
"diesel:0.11.0" = { path = "diesel" }
16+
"diesel:0.11.1" = { path = "diesel" }
1717
"diesel_codegen:0.11.0" = { path = "diesel_codegen" }
1818
"diesel_infer_schema:0.11.0" = { path = "diesel_infer_schema" }

diesel/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "diesel"
3-
version = "0.11.0"
3+
version = "0.11.1"
44
authors = ["Sean Griffin <sean@seantheprogrammer.com>"]
55
license = "MIT OR Apache-2.0"
66
description = "A safe, extensible ORM and Query builder"

0 commit comments

Comments
 (0)