Closed
Description
I'm currently trying to use
https://github.com/w3f/schnorrkel
within an sgx enclave here:
The library supports #[no_std]
. As @dingelish wrote here, this crate should be automatically supported, right?
However, if I add
extern crate schnorrkel;
use schnorrkel::keys::MiniSecretKey;
I get the usual std collision:
error: duplicate lang item in crate `std`: `f32_runtime`.
|
= note: first defined in crate `sgx_tstd`.
error: duplicate lang item in crate `std`: `f64_runtime`.
|
= note: first defined in crate `sgx_tstd`.
error: duplicate lang item in crate `std`: `panic_impl`.
|
= note: first defined in crate `sgx_tstd`.
error: duplicate lang item in crate `std`: `oom`.
|
= note: first defined in crate `sgx_trts`.
error: aborting due to 4 previous errors
error: Could not compile `SealedKeyEnclave`.
To learn more, run the command again with --verbose.
Any help is appreciated
Metadata
Assignees
Labels
No labels