diff --git a/Cargo.lock b/Cargo.lock index 499769b..0e4fedf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -292,19 +292,6 @@ dependencies = [ "synstructure 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "fido2_pam" -version = "0.1.0" -dependencies = [ - "ctap_hmac 0.3.0 (git+https://git.shimun.net/shimun/ctap?rev=1a8e83d81efa3ae2cd4d764ddbae72c95a5af3e1)", - "ctrlc 3.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "hex 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "pamsm 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "structopt 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "fnv" version = "1.0.6" @@ -414,6 +401,19 @@ dependencies = [ "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "pam_fido2" +version = "0.2.2" +dependencies = [ + "ctap_hmac 0.3.0 (git+https://git.shimun.net/shimun/ctap?rev=1a8e83d81efa3ae2cd4d764ddbae72c95a5af3e1)", + "ctrlc 3.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "hex 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "pamsm 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "structopt 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "pamsm" version = "0.2.0" diff --git a/Cargo.toml b/Cargo.toml index 0a1af48..b5c138d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] -name = "fido2_pam" -version = "0.1.0" +name = "pam_fido2" +version = "0.2.2" authors = ["shimun "] edition = "2018" @@ -12,7 +12,7 @@ path = "src/lib.rs" crate-type = ["cdylib"] [[bin]] -name = "fido2-pam-credential" +name = "pam_fido2-credential" path = "src/main.rs"