Mercurial > crates > nonstick
diff Cargo.toml @ 104:a2676475e86b default tip
Create the very start of a test suite.
- Creates a new testharness package
- Sets up the outlines of a test suite that will execute there
- A basic container where maybe those tests can execute
author | Paul Fisher <paul@pfish.zone> |
---|---|
date | Wed, 25 Jun 2025 16:56:56 -0400 |
parents | 8840fa6534f6 |
children |
line wrap: on
line diff
--- a/Cargo.toml Wed Jun 25 00:59:24 2025 -0400 +++ b/Cargo.toml Wed Jun 25 16:56:56 2025 -0400 @@ -1,13 +1,22 @@ +[workspace] +members = ["testharness"] +resolver = "3" + +[workspace.package] +version = "0.0.8-alpha0" +authors = ["Paul Fisher <paul@pfish.zone>"] +repository = "https://hg.pfish.zone/crates/nonstick/" +edition = "2021" + [package] name = "nonstick" description = "PAM bindings for Rust" -version = "0.0.7" -authors = ["Paul Fisher <paul@pfish.zone>", "Anthony Nowell <anowell@gmail.com>" ] -repository = "https://hg.pfish.zone/crates/nonstick/" +version.workspace = true +authors.workspace = true readme = "README.md" keywords = ["pam", "ffi", "linux", "authentication"] license = "MIT" -edition = "2021" +edition.workspace = true [features] default = ["link"]