File tree Expand file tree Collapse file tree 6 files changed +47
-7
lines changed Expand file tree Collapse file tree 6 files changed +47
-7
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " nodrop-union"
3
- version = " 0.1.10 "
3
+ version = " 0.1.11 "
4
4
authors = [" bluss" ]
5
5
6
6
license = " MIT/Apache-2.0"
7
7
8
- description = " A wrapper type to inhibit drop (destructor). Implementation crate for nodrop, the untagged unions implementation (which is unstable / requires nightly) as of this writing."
9
- documentation = " http://bluss.github.io/arrayvec/doc/nodrop_union"
8
+ description = """
9
+ A wrapper type to inhibit drop (destructor). Implementation crate for nodrop, the untagged unions implementation (which is unstable / requires nightly) as of this writing.
10
+
11
+ ***Deprecated: Use ManuallyDrop or MaybeUninit instead!***
12
+ """
10
13
repository = " https://github.com/bluss/arrayvec"
11
14
12
- keywords = [" container " , " drop " , " no_std " ]
15
+ keywords = []
13
16
14
17
[package .metadata .release ]
15
18
no-dev-version = true
19
+ tag-name = " nodrop-union-{{version}}"
20
+
21
+ [badges .maintenance ]
22
+ status = " deprecated"
Original file line number Diff line number Diff line change 2
2
Recent Changes (nodrop-union)
3
3
-----------------------
4
4
5
+ - 0.1.11
6
+
7
+ - Mark nodrop deprecated
8
+
9
+ With the release of arrayvec 0.5, nodrop is unused.
10
+
11
+ With the release of Rust 1.36 and MaybeUninit, nodrop-union has no
12
+ purpose at all (it was only for nightly releases).
13
+
5
14
- 0.1.10
6
15
7
16
- Update to include license files in the crate by @ignatenkobrain
Original file line number Diff line number Diff line change
1
+ //! A wrapper type to inhibit drop (destructor).
2
+ //!
3
+ //! ***Deprecated: Use ManuallyDrop or MaybeUninit instead!***
1
4
//!
2
5
//! **nodrop-union** is the untagged unions (requires Rust nightly channel and
3
6
//! unstable as of this writing) implementation for the **nodrop** crate.
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " nodrop"
3
- version = " 0.1.13 "
3
+ version = " 0.1.14 "
4
4
authors = [" bluss" ]
5
5
6
6
license = " MIT/Apache-2.0"
7
7
8
- description = " A wrapper type to inhibit drop (destructor). Use std::mem::ManuallyDrop instead!"
8
+ description = """
9
+ A wrapper type to inhibit drop (destructor).
10
+
11
+ ***Deprecated: Use ManuallyDrop or MaybeUninit instead!***
12
+ """
9
13
documentation = " https://docs.rs/nodrop/"
10
14
repository = " https://github.com/bluss/arrayvec"
11
15
12
- keywords = [" container " , " drop " , " no_std " ]
16
+ keywords = []
13
17
categories = [" rust-patterns" ]
14
18
15
19
[features ]
@@ -33,3 +37,8 @@ optional = true
33
37
34
38
[package .metadata .release ]
35
39
no-dev-version = true
40
+ tag-name = " nodrop-{{version}}"
41
+
42
+
43
+ [badges .maintenance ]
44
+ status = " deprecated"
Original file line number Diff line number Diff line change 5
5
Recent Changes (nodrop)
6
6
-----------------------
7
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
+
8
17
- 0.1.13
9
18
10
19
- Update to include license files in the crate by @ignatenkobrain
Original file line number Diff line number Diff line change
1
+ //! A wrapper type to inhibit drop (destructor).
2
+ //!
3
+ //! ***Deprecated: Use ManuallyDrop or MaybeUninit instead!***
1
4
//!
2
5
//! The **nodrop** crate has the following cargo feature flags:
3
6
//!
You can’t perform that action at this time.
0 commit comments