comparison 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
comparison
equal deleted inserted replaced
69:8f3ae0c7ab92 70:9f8381a1c09c
7 readme = "README.md" 7 readme = "README.md"
8 keywords = ["pam", "ffi", "linux", "authentication"] 8 keywords = ["pam", "ffi", "linux", "authentication"]
9 license = "MIT" 9 license = "MIT"
10 edition = "2021" 10 edition = "2021"
11 11
12 [features]
13 experimental = []
14
15 [dependencies] 12 [dependencies]
16 bitflags = "2.9.0" 13 bitflags = "2.9.0"
14 derive_more = { version = "2.0.1", features = ["from"] }
17 libc = "0.2.97" 15 libc = "0.2.97"
18 num-derive = "0.4.2" 16 num-derive = "0.4.2"
19 num-traits = "0.2.19" 17 num-traits = "0.2.19"
20 secure-string = "0.3.0" 18 secure-string = "0.3.0"
21 thiserror = "2.0.12" 19 thiserror = "2.0.12"