msirringhaus
msirringhaus
Just for completeness, this is the patch: ``` diff --git a/dom/webauthn/libudev-sys/src/lib.rs b/dom/webauthn/libudev-sys/src/lib.rs --- a/dom/webauthn/libudev-sys/src/lib.rs +++ b/dom/webauthn/libudev-sys/src/lib.rs @@ -124,6 +124,7 @@ macro_rules! define { // udev define!(udev_new, extern "C" fn ()...
Could you try with the latest nightly build of Firefox (and `security.webauthn.ctap2 = true`) if the "unknown username"-fallback in Firefox works as expected?
Just a quick note: Development of authenticator-rs has not stalled, but is pretty active, albeit on a different branch at the moment. Which is why the graphs don't show it....
Just FYI: I quickly looked into this, and it doesn't seem to be that easy to fix. `vendor-filterer` is calling `cargo metadata`, which errors out. `cargo metadata` doesn't provide any...
For Linux at least it's basically these functions: https://github.com/rust-minidump/minidump-writer/blob/main/src/linux/minidump_writer.rs#L135-L212 So ``` let res = MinidumpWriter::new(pid, tid) // ... some options, if you want, like: .set_minidump_size_limit(my_limit) // ... maybe some more...