[package]
edition = "2021"
rust-version = "1.96.0"
name = "maybe-dangling"
version = "0.2.0"
authors = ["Daniel Henry-Mantilla <daniel.henry.mantilla@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "`ManuallyDrop<T>` and `MaybeDangling<T>` semantics in stable Rust as per https://github.com/rust-lang/rfcs/pull/3336"
documentation = "https://docs.rs/maybe-dangling"
readme = "README.md"
keywords = [
"unsafe",
"dangling",
"aliasing",
"dereferenceable",
"manuallydrop",
]
license = "Zlib OR MIT OR Apache-2.0"
repository = "https://github.com/danielhenrymantilla/maybe-dangling.rs"
[package.metadata.docs.rs]
features = ["docs-rs"]
rustdoc-args = [
"--html-before-content",
"fix-docsrs-li-details-summary.html",
]
[features]
better-docs = []
default = []
docs-rs = ["better-docs"]
nightly-dropck_eyepatch = []
ui-tests = ["better-docs"]
[lib]
name = "maybe_dangling"
path = "src/lib.rs"
[dependencies]
[dev-dependencies]