comparison 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
comparison
equal deleted inserted replaced
103:dfcd96a74ac4 104:a2676475e86b
1 [workspace]
2 members = ["testharness"]
3 resolver = "3"
4
5 [workspace.package]
6 version = "0.0.8-alpha0"
7 authors = ["Paul Fisher <paul@pfish.zone>"]
8 repository = "https://hg.pfish.zone/crates/nonstick/"
9 edition = "2021"
10
1 [package] 11 [package]
2 name = "nonstick" 12 name = "nonstick"
3 description = "PAM bindings for Rust" 13 description = "PAM bindings for Rust"
4 version = "0.0.7" 14 version.workspace = true
5 authors = ["Paul Fisher <paul@pfish.zone>", "Anthony Nowell <anowell@gmail.com>" ] 15 authors.workspace = true
6 repository = "https://hg.pfish.zone/crates/nonstick/"
7 readme = "README.md" 16 readme = "README.md"
8 keywords = ["pam", "ffi", "linux", "authentication"] 17 keywords = ["pam", "ffi", "linux", "authentication"]
9 license = "MIT" 18 license = "MIT"
10 edition = "2021" 19 edition.workspace = true
11 20
12 [features] 21 [features]
13 default = ["link"] 22 default = ["link"]
14 # Enable this to actually link against your system's PAM library. 23 # Enable this to actually link against your system's PAM library.
15 # 24 #