I'm trying adapt the `error-chain` crate. It relies on the `backtrace` crate
which I replaced by the backtrace feature of tstd. I don't know what to do with
the hidden `InternalBacktrace` here:
https://github.com/rust-lang-nursery/error-chain/blob/44c9240940e974695386cb7b9ab020df1147dbfe/src/lib.rs#L558
```
error[E0432]: unresolved import `std::backtrace::InternalBacktrace`
-->
/root/.cargo/git/checkouts/error-chain-cd67bb92899312ae/0503635/src/lib.rs:560:9
|
560 | pub use std::backtrace::InternalBacktrace;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ no `InternalBacktrace` in
`backtrace`
```
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/apache/incubator-teaclave-sgx-sdk/issues/238