Skip to content

Commit

Permalink
Fixes #19. Also bumped crate version to 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fizyk20 committed Sep 15, 2016
2 parents e2f15a9 + 6ba93a3 commit 285f045
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
5 changes: 1 addition & 4 deletions Cargo.toml
@@ -1,7 +1,7 @@
[package]

name = "generic-array"
version = "0.4.1"
version = "0.5.0"
authors = [ "Bartłomiej Kamiński <fizyk20@gmail.com>" ]
description = "Generic types implementing functionality of arrays"
license = "MIT"
Expand All @@ -19,6 +19,3 @@ serde = { version = "~0.8", optional = true }
[dev_dependencies]
# this can't yet be made optional, see https://github.com/rust-lang/cargo/issues/1596
serde_json = "~0.8"

[features]
no_std = []
3 changes: 1 addition & 2 deletions src/lib.rs
Expand Up @@ -31,8 +31,7 @@
//! assert_eq!(array[2], 3);
//! # }
//! ```
#![cfg_attr(feature="no_std", no_std)]
#[cfg(feature="no_std")]
#![no_std]
extern crate core as std;
pub extern crate typenum;
extern crate nodrop;
Expand Down

0 comments on commit 285f045

Please sign in to comment.