Mercurial > crates > nonstick
view Cargo.toml @ 70:9f8381a1c09c
Implement low-level conversation primitives.
This change does two primary things:
1. Introduces new Conversation traits, to be implemented both
by the library and by PAM client applications.
2. Builds the memory-management infrastructure for passing messages
through the conversation.
...and it adds tests for both of the above, including ASAN tests.
author | Paul Fisher <paul@pfish.zone> |
---|---|
date | Tue, 03 Jun 2025 01:21:59 -0400 |
parents | 71e432a213ee |
children | c7c596e6388f |
line wrap: on
line source
[package] name = "nonstick" description = "PAM bindings for Rust" version = "0.0.6" authors = ["Paul Fisher <paul@pfish.zone>", "Anthony Nowell <anowell@gmail.com>" ] repository = "https://hg.pfish.zone/crates/nonstick/" readme = "README.md" keywords = ["pam", "ffi", "linux", "authentication"] license = "MIT" edition = "2021" [dependencies] bitflags = "2.9.0" derive_more = { version = "2.0.1", features = ["from"] } libc = "0.2.97" num-derive = "0.4.2" num-traits = "0.2.19" secure-string = "0.3.0" thiserror = "2.0.12"