Skip to content

Commit 23c15e3

Browse files
authored
Merge pull request #77 from wiktor-k/wiktor/reexports
Re-export types that we use in our public API
2 parents 160fb0b + 47c4b32 commit 23c15e3

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

src/agent.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ use std::io;
55

66
use async_trait::async_trait;
77
use futures::{SinkExt, TryStreamExt};
8+
pub use service_binding;
89
use ssh_key::Signature;
910
use tokio::io::{AsyncRead, AsyncWrite};
1011
#[cfg(windows)]

src/lib.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,8 @@ pub mod error;
1515

1616
#[cfg(feature = "agent")]
1717
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

Comments
 (0)