Mercurial > crates > nonstick
view src/libpam/mod.rs @ 195:a47e1f6e4faa v0.1.1
Bump nonstick to v0.1.1.
author | Paul Fisher <paul@pfish.zone> |
---|---|
date | Sun, 03 Aug 2025 01:09:53 -0400 |
parents | 46e8ce5cd5d1 |
children |
line wrap: on
line source
//! The implementation of the PAM interface that wraps `libpam`. //! //! While you're going to want to write PAM modules and applications against //! the interfaces in [the `handle` module](crate::handle) for testability, //! this is (probably) what will be used behind the scenes. #![allow(dead_code)] mod answer; mod conversation; mod environ; mod handle; mod items; mod memory; #[doc(hidden)] pub mod module; mod question; #[doc(inline)] pub use handle::{LibPamHandle, LibPamTransaction, TransactionBuilder};