Mercurial > crates > nonstick
changeset 2:e69e2966ae0d
Replaces generated README
author | Jesse Hallett <jesse@galois.com> |
---|---|
date | Thu, 05 Mar 2015 16:33:43 -0800 |
parents | b195a14058bb |
children | 30ce6e9d3e91 |
files | README.markdown README.md src/lib.rs |
diffstat | 3 files changed, 20 insertions(+), 22 deletions(-) [+] |
line wrap: on
line diff
--- a/README.markdown Thu Mar 05 16:25:10 2015 -0800 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,18 +0,0 @@ -rust-pam -======== - -Rust interface to the pluggable authentication module framework (PAM). - -The goal of this library is to provide a type-safe API that can be used to -interact with PAM. The library is incomplete - currently it supports a subset -of functions for use in a pam authentication module. A pam module is a shared -library that is invoked to authenticate a user, or to perform other functions. - -For more information, see the package documentation. To build the -documentation: - - $ cargo doc - -Then open - - target/doc/pam/index.html
--- a/README.md Thu Mar 05 16:25:10 2015 -0800 +++ b/README.md Thu Mar 05 16:33:43 2015 -0800 @@ -1,2 +1,18 @@ -# rust-pam -A PAM binding in the Rust programming language. +rust-pam +======== + +Rust interface to the pluggable authentication module framework (PAM). + +The goal of this library is to provide a type-safe API that can be used to +interact with PAM. The library is incomplete - currently it supports a subset +of functions for use in a pam authentication module. A pam module is a shared +library that is invoked to authenticate a user, or to perform other functions. + +For more information, see the package documentation. To build the +documentation: + + $ cargo doc + +Then open + + target/doc/pam/index.html
--- a/src/lib.rs Thu Mar 05 16:25:10 2015 -0800 +++ b/src/lib.rs Thu Mar 05 16:33:43 2015 -0800 @@ -19,9 +19,9 @@ //! `pam_sm_authenticate()`, which will use functions in this library to //! interrogate the program that requested authentication for more information, //! and to render a result. For a working example that uses this library, see -//! [tozny-pam][]. +//! [toznyauth-pam][]. //! -//! [tozny-pam]: https://github.com/tozny/tozny-pam +//! [toznyauth-pam]: https://github.com/tozny/toznyauth-pam //! //! Note that constants that are normally read from pam header files are //! hard-coded in the `constants` module. The values there are taken from