Files
arrayvec/nodrop/Cargo.toml
T
bluss c110696a96 nodrop, nodrop-union: Mark deprecated
With the release of arrayvec 0.5, these crates are unused.

With the release of Rust 1.36 and MaybeUninit, these crates have no
purpose (but for older Rust releases).
2019-10-09 09:33:13 +02:00

45 lines
826 B
TOML

[package]
name = "nodrop"
version = "0.1.14"
authors = ["bluss"]
license = "MIT/Apache-2.0"
description = """
A wrapper type to inhibit drop (destructor).
***Deprecated: Use ManuallyDrop or MaybeUninit instead!***
"""
documentation = "https://docs.rs/nodrop/"
repository = "https://github.com/bluss/arrayvec"
keywords = []
categories = ["rust-patterns"]
[features]
default = ["std"]
# Default, requires Rust 1.6+ to disable
# Use libstd
std = []
# Optional, Rust 1.21.0
# Use `needs_drop` to skip overwriting if not necessary
use_needs_drop = []
# Optional, nightly channel
use_union = ["nodrop-union"]
[dependencies.nodrop-union]
path = "../nodrop-union"
version = "0.1.8"
optional = true
[package.metadata.release]
no-dev-version = true
tag-name = "nodrop-{{version}}"
[badges.maintenance]
status = "deprecated"