1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-06 00:13:28 +00:00

[BEEEP/PM-22958] Update russh version, and add sessionbind information (#14602)

* Update russh version, and add sessionbind information

* Cargo fmt

* Clean up to fix lint

* Attempt to fix windows

* Use expect instead of unwrap

* Fix cargo toml
This commit is contained in:
Bernd Schoolmann
2025-07-09 16:52:47 +02:00
committed by GitHub
parent 489cbd4856
commit e7d5cde105
7 changed files with 241 additions and 22 deletions

View File

@@ -166,6 +166,7 @@ pub mod clipboards {
pub mod sshagent {
use std::sync::Arc;
use desktop_core::ssh_agent::BitwardenSshKey;
use napi::{
bindgen_prelude::Promise,
threadsafe_function::{ErrorStrategy::CalleeHandled, ThreadsafeFunction},
@@ -174,7 +175,7 @@ pub mod sshagent {
#[napi]
pub struct SshAgentState {
state: desktop_core::ssh_agent::BitwardenDesktopAgent,
state: desktop_core::ssh_agent::BitwardenDesktopAgent<BitwardenSshKey>,
}
#[napi(object)]