You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the current state, this crate works with Rust 2015 only under a specific conditions: explicit extern crate core; must be added to the top of the project's main file — otherwise compiler gives a lot of weird warnings per square inch of code. This is required because PR #78 introduced ::core paths instead of ::std paths for better compatibility with #[no_std]. More on topic here: https://doc.rust-lang.org/edition-guide/rust-2018/module-system/path-clarity.html.
This conflict should be either a documented 'feature', or somehow mitigated via code.
The text was updated successfully, but these errors were encountered:
In the current state, this crate works with Rust 2015 only under a specific conditions: explicit
extern crate core;
must be added to the top of the project's main file — otherwise compiler gives a lot of weird warnings per square inch of code. This is required because PR #78 introduced::core
paths instead of::std
paths for better compatibility with#[no_std]
. More on topic here: https://doc.rust-lang.org/edition-guide/rust-2018/module-system/path-clarity.html.This conflict should be either a documented 'feature', or somehow mitigated via code.
The text was updated successfully, but these errors were encountered: