chore(authenticator): Inline u2f crate (#780)

* chore(authenticator): Inline u2f crate

* update chrono

* update rustix

* clippy
This commit is contained in:
Fabian-Lars
2023-11-29 12:56:26 +01:00
committed by GitHub
parent 3f7c4ddc96
commit a67f7cb7c8
15 changed files with 725 additions and 69 deletions
@@ -115,7 +115,7 @@ unsafe extern "system" fn single_instance_window_proc<R: Runtime>(
let data = CStr::from_ptr((*cds_ptr).lpData as _).to_string_lossy();
let mut s = data.split('|');
let cwd = s.next().unwrap();
let args = s.into_iter().map(|s| s.to_string()).collect();
let args = s.map(|s| s.to_string()).collect();
callback(app_handle, args, cwd.to_string());
}
1