-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rust/Cargo.toml: work around the compilation problem with clang++.
This doesn't actually guarantee that the problem is resolved in dependent package, because the latter can override the version.
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -23,7 +23,7 @@ include = [ | |
[dependencies] | ||
|
||
[build-dependencies] | ||
cc = "^1.0.70" | ||
cc = "^1.0.70, <1.1.32" | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
nazar-pc
|
||
which = "^4.0" | ||
|
||
[features] | ||
|
This is not a great solution. Downstream users can force any version above 1.0.70 themselves if needed, but this way you prevent them from ever upgrading above 1.1.32 even if the issue was fixed upstream. Please don't do this, it causes more issues than fixes long-term.