-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
We appear to no longer be able to use `paths =` from `.cargo/config`, as it blows up when the dependencies of the overriden crate differ from the released version. This unfortunately means that we'll need to manually specify the overrides in every single one of our crates for development on master. Hopefully we can have a better solution long term, in the mean time this is the only option that will compile.
- Loading branch information
Showing
7 changed files
with
27 additions
and
1 deletion.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,8 @@ authors = ["Sean Griffin <[email protected]>"] | |
diesel = { version = "0.7.1", features = ["sqlite", "postgres"] } | ||
diesel_codegen = { version = "0.7.2" } | ||
compiletest_rs = "0.2.1" | ||
|
||
|
||
[replace] | ||
"diesel:0.7.1" = { path = "../diesel" } | ||
"diesel_codegen:0.7.2" = { path = "../diesel_codegen" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,7 @@ authors = ["Sean Griffin <[email protected]>"] | |
diesel = "0.7.1" | ||
diesel_codegen = { version = "0.7.2", features = ["postgres"] } | ||
dotenv = "0.8.0" | ||
|
||
[replace] | ||
"diesel:0.7.1" = { path = "../../diesel" } | ||
"diesel_codegen:0.7.2" = { path = "../../diesel_codegen" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,7 @@ authors = ["Sean Griffin <[email protected]>"] | |
diesel = "0.7.1" | ||
diesel_codegen = { version = "0.7.2", features = ["postgres"] } | ||
dotenv = "0.8.0" | ||
|
||
[replace] | ||
"diesel:0.7.1" = { path = "../../diesel" } | ||
"diesel_codegen:0.7.2" = { path = "../../diesel_codegen" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,7 @@ authors = ["Sean Griffin <[email protected]>"] | |
diesel = "0.7.1" | ||
diesel_codegen = { version = "0.7.2", features = ["postgres"] } | ||
dotenv = "0.8.0" | ||
|
||
[replace] | ||
"diesel:0.7.1" = { path = "../../diesel" } | ||
"diesel_codegen:0.7.2" = { path = "../../diesel_codegen" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters