Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rust: Temporarily use a patched version of failure crate #2754

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changelog/2754.internal.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
rust: Temporarily use a patched version of failure crate

This fixes an [issue in the failure crate](
https://users.rust-lang.org/t/failure-derive-compilation-error/39062) which
used a private name from the quote crate which was removed in version 1.0.3+.
48 changes: 30 additions & 18 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ members = [
[patch.crates-io]
# TODO: Remove when merged upstream (briansmith/ring#738).
ring = { git = "https://github.com/oasislabs/ring-sgx", branch = "sgx-target" }
# TODO: Remove after a new release with the fix in
# https://github.com/rust-lang-nursery/failure/pull/343 is released.
failure = { git = "https://github.com/grokse/failure", branch = "build_quote_103" }

[profile.release]
panic = "abort"