nodrop and nodrop-union 0.1.8

This commit is contained in:
bluss
2016-09-06 11:45:57 +02:00
parent 0fdb35baaf
commit e9746bab80
2 changed files with 9 additions and 1 deletions
+7
View File
@@ -69,6 +69,13 @@ Recent Changes (arrayvec)
Recent Changes (nodrop) Recent Changes (nodrop)
----------------------- -----------------------
- 0.1.8
- Add crate feature ``use_union`` that uses untagged unions to implement NoDrop.
Finally we have an implementation without hacks, without a runtime flag,
and without an actual ``Drop`` impl (which was needed to suppress drop).
The crate feature requires nightly and is unstable.
- 0.1.7 - 0.1.7
- Remove crate feature ``no_drop_flag``, because it doesn't compile on nightly - Remove crate feature ``no_drop_flag``, because it doesn't compile on nightly
+2 -1
View File
@@ -1,6 +1,6 @@
[package] [package]
name = "nodrop" name = "nodrop"
version = "0.1.7" version = "0.1.8"
authors = ["bluss"] authors = ["bluss"]
license = "MIT/Apache-2.0" license = "MIT/Apache-2.0"
@@ -31,4 +31,5 @@ default-features = false
[dependencies.nodrop-union] [dependencies.nodrop-union]
path = "../nodrop-union" path = "../nodrop-union"
version = "0.1.8"
optional = true optional = true