Files
arrayvec/nodrop/Cargo.toml
T
2017-10-23 21:38:27 +02:00

40 lines
823 B
TOML

[package]
name = "nodrop"
version = "0.1.11"
authors = ["bluss"]
license = "MIT/Apache-2.0"
description = "A wrapper type to inhibit drop (destructor). Use std::mem::ManuallyDrop instead!"
documentation = "https://docs.rs/nodrop/"
repository = "https://github.com/bluss/arrayvec"
keywords = ["container", "drop", "no_std"]
categories = ["rust-patterns"]
[features]
default = ["std"]
# Default, requires Rust 1.6+ to disable
# Use libstd
std = ["odds/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.odds]
version = "0.2.12"
default-features = false
[dependencies.nodrop-union]
path = "../nodrop-union"
version = "0.1.8"
optional = true
[package.metadata.release]
no-dev-version = true