30 lines
595 B
TOML
30 lines
595 B
TOML
[package]
|
|
name = "pam_fido2"
|
|
version = "0.2.7"
|
|
authors = ["shimun <shimun@shimun.net>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
name = "pam_fido2"
|
|
path = "src/lib.rs"
|
|
crate-type = ["cdylib"]
|
|
|
|
[[bin]]
|
|
name = "pam_fido2-cli"
|
|
path = "src/main.rs"
|
|
|
|
[profile.release]
|
|
opt-level = 0
|
|
|
|
[dependencies]
|
|
ctap_hmac = { version = "0.4.1", features = ["request_multiple"] }
|
|
pamsm = { version = "0.3.3", features = ["libpam"] }
|
|
regex = "1.3.1"
|
|
rand = "0.7.2"
|
|
hex = "0.4.0"
|
|
structopt = "0.3.11"
|
|
ctrlc = "3.1.4"
|
|
failure = "0.1.6"
|