view libpam-sys/src/lib.rs @ 107:49c6633f6fd2

Add Cargo.lock file. This ensures that we get reproducible builds, particularly because we want to support Rust v1.75.
author Paul Fisher <paul@pfish.zone>
date Thu, 26 Jun 2025 22:42:32 -0400
parents 49d9e2b5c189
children e97534be35e3
line wrap: on
line source

#![doc = include_str!("../README.md")]
//!
//! ## Version info
//!
//! This documentation was built with the following configuration:
//!
#![cfg_attr(pam_impl = "illumos", doc = "- PAM implementation: Illumos")]
#![cfg_attr(pam_impl = "linux-pam", doc = "- PAM implementation: Linux-PAM")]
#![cfg_attr(pam_impl = "openpam", doc = "- PAM implementation: OpenPAM")]
//!
#![cfg_attr(feature = "basic-ext", doc = "- Includes common extensions")]
#![cfg_attr(feature = "linux-pam-ext", doc = "- Includes Linux-PAM extensions")]
#![cfg_attr(feature = "openpam-ext", doc = "- Includes OpenPAM extensions")]
#![cfg_attr(
    feature = "use-system-headers",
    doc = "- Built with system header files"
)]
mod constants;
pub mod helpers;

#[doc(inline)]
pub use constants::*;