maybe_dangling/lib.rs
1#![doc = include_str!("../README.md")]
2#![no_std]
3#![deny(unsafe_code)]
4#![cfg_attr(feature = "nightly-dropck_eyepatch", feature(dropck_eyepatch))]
5
6pub use self::maybe_dangling::MaybeDangling;
7mod maybe_dangling;
8
9#[doc(hidden)]
10/** Not part of the public API */
11pub mod ඞ {
12 pub use ::core;
13}