summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
diff options
context:
space:
mode:
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"