diff --git a/CHANGELOG.md b/CHANGELOG.md index f08ad50..6af0c66 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ## Improvements +- daemon: Decrease USB logging level. - ui: Remove process ID from credential prompt. # 0.3.0 [2026-08-27] diff --git a/Cargo.lock b/Cargo.lock index 40b5ad3..2a4b104 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2308,8 +2308,7 @@ dependencies = [ [[package]] name = "libwebauthn" version = "0.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b7bf92efada8fcf40982774a4d8e1760ab7d086728ce2669ea1413a9a9f8c577" +source = "git+https://github.com/linux-credentials/libwebauthn.git?rev=efa374d6303eb1ebeff373878fa76736f3d2c308#efa374d6303eb1ebeff373878fa76736f3d2c308" dependencies = [ "aes", "aes-gcm", diff --git a/credentialsd/Cargo.toml b/credentialsd/Cargo.toml index 9507f13..668b0a1 100644 --- a/credentialsd/Cargo.toml +++ b/credentialsd/Cargo.toml @@ -18,7 +18,11 @@ async-stream = "=0.3.6" async-trait = "=0.1.91" base64 = "=0.22.1" futures = "=0.3.33" -libwebauthn = { version = "=0.10.0", features = ["nfc-backend-libnfc", "nfc-backend-pcsc", "reqwest-related-origins-source"] } +libwebauthn = { + git = "https://github.com/linux-credentials/libwebauthn.git", + rev = "efa374d6303eb1ebeff373878fa76736f3d2c308", + features = ["nfc-backend-libnfc", "nfc-backend-pcsc", "reqwest-related-origins-source"] +} nfc1 = { version = "=0.7.1", default-features = false } rand = "=0.10.2" ring = "=0.17.14"