af8f6b5d6e
This unstable feature is not supported in nightly anymore (and nor is it meaningful).
28 lines
582 B
TOML
28 lines
582 B
TOML
[package]
|
|
name = "nodrop"
|
|
version = "0.1.6"
|
|
authors = ["bluss"]
|
|
|
|
license = "MIT/Apache-2.0"
|
|
|
|
description = "A wrapper type to inhibit drop (destructor)."
|
|
documentation = "http://bluss.github.io/arrayvec/doc/nodrop"
|
|
repository = "https://github.com/bluss/arrayvec"
|
|
|
|
keywords = ["container", "drop", "no_std"]
|
|
|
|
[features]
|
|
default = ["std"]
|
|
|
|
# Default, requires Rust 1.6+ to disable
|
|
# Use libstd
|
|
std = ["odds/std"]
|
|
|
|
# Optional, nightly channel
|
|
# Use `needs_drop` to skip overwriting if not necessary
|
|
use_needs_drop = []
|
|
|
|
[dependencies.odds]
|
|
version = "0.2.12"
|
|
default-features = false
|