I'm trying to use BigUints from a num box in Rust, and I use this code to import them:
extern crate num; use num::bigint::BigUint;
However, when compiling, it returns the following error:
main.rs:1:1: 1:18 error: can't find crate for `num` main.rs:1 extern crate num; ^~~~~~~~~~~~~~~~~ error: aborting due to previous error
I do not use any compiler flags.
What am I doing wrong?
import rust rust-crates
Tyler
source share