Is it possible to use external crates in https://play.rust-lang.org/ ?
It not, is it part of the feature list ?
Thanks!!
External crates in rust playgound
cg-cnu
#1
cg-cnu
#3
Thanks so much!
I was trying to use rand
and looks like it is temporarily removed from the list.
Here is the link if anyone else faces the same issue…
Cheers!
steveklabnik
#4
Don’t use #![feature(rustc_private)
; that gives you the compiler’s private crates, and they may not match the external versions at all.
The top 100 crates by download count can generally be used. If you type extern crate
you’ll get a list.