@@ -21,10 +21,10 @@ used features.
21
21
the floating point types, the `bool` type, tuples, characters, strings,
22
22
vectors (`vec`), managed boxes (`managed`), owned boxes (`owned`), and unsafe
23
23
and borrowed pointers (`ptr`). Additionally, `core` provides task management
24
- and creation (`task`), communication primitives (`comm` and `pipes`), an
25
- efficient vector builder (`dvec `), platform abstractions (`os` and `path`),
26
- basic I/O abstractions (`io`), common traits (` cmp`, `num`, `to_str`), and
27
- complete bindings to the C standard library (`libc`).
24
+ and creation (`task`), communication primitives (`comm` and `pipes`), platform
25
+ abstractions (`os` and `path `), basic I/O abstractions (`io`), common traits
26
+ (` cmp`, `num`, `to_str`), and complete bindings to the C standard library
27
+ (`libc`).
28
28
29
29
`core` is linked to all crates by default and its contents imported.
30
30
Implicitly, all crates behave as if they included the following prologue:
@@ -141,9 +141,6 @@ pub mod container;
141
141
pub mod option;
142
142
pub mod result;
143
143
pub mod either;
144
- pub mod dvec;
145
- #[path="iter-trait.rs"] #[merge = "iter-trait/dvec.rs"]
146
- pub mod dvec_iter;
147
144
pub mod dlist;
148
145
#[path="iter-trait.rs"] #[merge = "iter-trait/dlist.rs"]
149
146
pub mod dlist_iter;
0 commit comments