]> git.lizzy.rs Git - enumset.git/commitdiff
Update documention, bump version to 0.3.4
authorLymia Aluysia <lymia@lymiahugs.com>
Thu, 24 May 2018 02:31:29 +0000 (21:31 -0500)
committerLymia Aluysia <lymia@lymiahugs.com>
Thu, 24 May 2018 02:33:10 +0000 (21:33 -0500)
Cargo.toml
README.md
src/lib.rs

index d74355077a8c436730dd8e3aa464309d728bef84..d76cb4ef5c0d2b1a098af746fffd7d42de71f8ce 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "enumset"
-version = "0.3.3"
+version = "0.3.4"
 authors = ["Lymia Aluysia <lymia@lymiahugs.com>"]
 
 description = "A library for creating compact sets of enums."
index f75f68db166ad526d4dcb9932620b8f5602c9d42..e7b847abf1053e30cadc6d0d5bb48da2dc13a53f 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
 A library for defining enums that can be used in compact bit sets.
-
-It supports enums up to 64 variants on stable Rust, and up to 128 variants on nightly Rust with the `nightly` feature enabled, and has a macro to use these sets in constants.
+It supports enums up to 128 variants, and has a macro to use these
+sets in constants.
 
 [See the documentation for more information.](https://docs.rs/enumset)
 
index 7d41ff008e6244280777fa34c19c1d8644b56e56..bc4750694b6c52d0fab095fdca56e3464cbd975e 100644 (file)
@@ -1,10 +1,8 @@
 #![cfg_attr(all(feature = "nightly"), feature(const_fn, allow_internal_unstable, macro_vis_matcher))]
 #![forbid(missing_docs)]
 
-//! A library for defining enums that can be used in compact bit sets.
-//!
-//! It supports enums up to 64 variants on stable Rust, and up to 128 variants on nightly Rust with
-//! the `nightly` feature enabled.
+//! A library for defining enums that can be used in compact bit sets. It supports enums up to 128
+//! variants, and has a macro to use these sets in constants.
 //!
 //! # Defining enums for use with EnumSet
 //!