Remove the optional generic-array feature

- It can be added back later if needed
- A public dependency implies version coupling, and we can't afford to
  have it for a niche use case.
This commit is contained in:
bluss
2017-03-24 18:52:05 +01:00
parent e6c090de88
commit f65ea92da4
5 changed files with 1 additions and 56 deletions
-8
View File
@@ -14,19 +14,11 @@
//! - Use the unstable feature untagged unions for the internal implementation,
//! which has reduced space overhead
//!
//! - `use_generic_array`
//! - Optional
//! - Requires Rust stable channel
//! - Depend on generic-array and allow using it just like a fixed
//! size array for ArrayVec storage.
#![doc(html_root_url="https://docs.rs/arrayvec/0.3/")]
#![cfg_attr(not(feature="std"), no_std)]
extern crate odds;
extern crate nodrop;
#[cfg(feature = "use_generic_array")]
extern crate generic_array;
#[cfg(not(feature="std"))]
extern crate core as std;