summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
diff options
context:
space:
mode:
authorTobias Wiese <tobias@tobiaswiese.com>2025-12-03 21:49:13 +0100
committerTobias Wiese <tobias@tobiaswiese.com>2025-12-03 21:49:13 +0100
commitbf959a2534d23c5c667ea3914bc57d6ef2aeb2b2 (patch)
treeebe4e3be08a17d29b434ce074f9a3ae4032b9521 /Cargo.toml
Initial commitHEADmaster
Signed-off-by: Tobias Wiese <tobias@tobiaswiese.com>
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml19
1 files changed, 19 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..254966e
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,19 @@
+[package]
+name = "pam_tokenpg"
+version = "1.0.0"
+authors = ["Tobias Wiese <tobias@tobiaswiese.com>"]
+edition = "2024"
+
+[lib]
+crate-type = ["cdylib"]
+
+[profile.dev]
+panic = "abort"
+
+[profile.release]
+panic = "abort"
+
+[dependencies]
+pamsm = { version = "0.5.5", features = ["libpam"] }
+diesel = { version = "2.2.7", features = ["postgres"] }
+constant_time_eq = "0.3.1"