README.rst
1
2nodrop
3======
4
5Recent Changes (nodrop)
6-----------------------
7
8- 0.1.14
9
10 - Mark nodrop deprecated
11
12 With the release of arrayvec 0.5, nodrop is unused.
13
14 With the release of Rust 1.36 and MaybeUninit, nodrop has no
15 purpose (but for older Rust releases).
16
17- 0.1.13
18
19 - Update to include license files in the crate by @ignatenkobrain
20
21- 0.1.12
22
23 - Remove dependency on crate odds.
24
25- 0.1.11
26
27 - Remove erronous assertion in test (#77)
28
29- 0.1.10
30
31 - Update for stable ``needs_drop`` (Rust 1.21, was nightly only)
32
33- 0.1.9
34
35 - Fix issue in recent nightly where ``repr(u8)`` did not work. Use
36 a better way to get rid of the enum layout optimization.
37
38- 0.1.8
39
40 - Add crate feature ``use_union`` that uses untagged unions to implement NoDrop.
41 Finally we have an implementation without hacks, without a runtime flag,
42 and without an actual ``Drop`` impl (which was needed to suppress drop).
43 The crate feature requires nightly and is unstable.
44
45- 0.1.7
46
47 - Remove crate feature ``no_drop_flag``, because it doesn't compile on nightly
48 anymore. Drop flags are gone anyway!
49
50- 0.1.6
51
52 - Add feature std, which you can opt out of to use ``no_std``.
53
54- 0.1.5
55
56 - Added crate feature ``use_needs_drop`` which is a nightly-only
57 optimization, which skips overwriting if the inner value does not need
58 drop.
59
60License
61=======
62
63Dual-licensed to be compatible with the Rust project.
64
65Licensed under the Apache License, Version 2.0
66http://www.apache.org/licenses/LICENSE-2.0 or the MIT license
67http://opensource.org/licenses/MIT, at your
68option. This file may not be copied, modified, or distributed
69except according to those terms.
70
71
72