We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cdccb8b + 5f238f7 commit 223d4c0Copy full SHA for 223d4c0
src/lib.rs
@@ -77,19 +77,14 @@
77
//!
78
//! [def]: map/struct.IndexMap.html#impl-Default
79
80
-#[cfg(not(has_std))]
81
extern crate alloc;
82
83
#[cfg(has_std)]
84
#[macro_use]
85
extern crate std;
86
87
88
use alloc::vec::{self, Vec};
89
90
-#[cfg(has_std)]
91
-use std::vec::{self, Vec};
92
-
93
94
mod macros;
95
mod equivalent;
src/rayon/mod.rs
@@ -1,11 +1,7 @@
1
use rayon::prelude::*;
2
3
4
use alloc::collections::LinkedList;
5
6
7
-use std::collections::LinkedList;
8
9
use crate::vec::Vec;
10
11
// generate `ParallelIterator` methods by just forwarding to the underlying
0 commit comments