You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
395 B

//! Utilities for pinning
#![no_std]
#![warn(missing_docs, missing_debug_implementations)]
#![deny(bare_trait_objects)]
#![allow(unknown_lints)]
#![doc(html_root_url = "https://docs.rs/pin-utils/0.1.0")]
// ANDROID: Use std to allow building as a dylib.
extern crate std;
#[doc(hidden)]
pub mod core_reexport {
pub use core::*;
}
#[macro_use]
mod stack_pin;
#[macro_use]
mod projection;