We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 160fb0b + 47c4b32 commit 23c15e3Copy full SHA for 23c15e3
src/agent.rs
@@ -5,6 +5,7 @@ use std::io;
5
6
use async_trait::async_trait;
7
use futures::{SinkExt, TryStreamExt};
8
+pub use service_binding;
9
use ssh_key::Signature;
10
use tokio::io::{AsyncRead, AsyncWrite};
11
#[cfg(windows)]
src/lib.rs
@@ -15,3 +15,8 @@ pub mod error;
15
16
#[cfg(feature = "agent")]
17
pub use async_trait::async_trait;
18
+//
19
+// re-export dependencies that are used in the public API of our crate
20
+pub use secrecy;
21
+pub use ssh_encoding;
22
+pub use ssh_key;
0 commit comments