We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d182c71 + 9c417a7 commit 573681dCopy full SHA for 573681d
README.md
@@ -16,12 +16,6 @@ Add this to your `Cargo.toml`:
16
num-bigint = "0.3"
17
```
18
19
-and this to your crate root:
20
-
21
-```rust
22
-extern crate num_bigint;
23
-```
24
25
## Features
26
27
The `std` crate feature is enabled by default, and is mandatory before Rust
src/lib.rs
@@ -19,9 +19,6 @@
//! ## Example
//!
//! ```rust
-//! extern crate num_bigint;
-//! extern crate num_traits;
-//!
//! # fn main() {
//! use num_bigint::BigUint;
//! use num_traits::{Zero, One};
@@ -47,9 +44,6 @@
47
44
//! It's easy to generate large random numbers:
48
45
49
46
//! ```rust,ignore
50
-//! extern crate rand;
51
52
53
//! use num_bigint::{ToBigInt, RandBigInt};
54
55
//! let mut rng = rand::thread_rng();
0 commit comments