ob-rust icon indicating copy to clipboard operation
ob-rust copied to clipboard

using extern crate

Open flintforge opened this issue 7 years ago • 0 comments

Out of the box : C-c C-c

Compiling rust-src-...
error: use of unstable library feature 'rustc_private': 
this crate is being loaded from the sysroot, an unstable location; 
did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)

Workaround : use nightly build curl -s https://static.rust-lang.org/rustup.sh | sh -s -- --channel=nightly and add

#![feature(rustc_private)]

in the source header

flintforge avatar Aug 25 '18 08:08 flintforge