diff 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 diff
--- a/Cargo.toml	Sun Jun 01 01:15:04 2025 -0400
+++ b/Cargo.toml	Tue Jun 03 01:21:59 2025 -0400
@@ -9,11 +9,9 @@
 license = "MIT"
 edition = "2021"
 
-[features]
-experimental = []
-
 [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"