Skip to content

Commit

Permalink
Merge pull request #77 from wiktor-k/wiktor/reexports
Browse files Browse the repository at this point in the history
Re-export types that we use in our public API
  • Loading branch information
wiktor-k authored Jun 6, 2024
2 parents 160fb0b + 47c4b32 commit 23c15e3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/agent.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ use std::io;

use async_trait::async_trait;
use futures::{SinkExt, TryStreamExt};
pub use service_binding;
use ssh_key::Signature;
use tokio::io::{AsyncRead, AsyncWrite};
#[cfg(windows)]
Expand Down
5 changes: 5 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,8 @@ pub mod error;

#[cfg(feature = "agent")]
pub use async_trait::async_trait;
//
// re-export dependencies that are used in the public API of our crate
pub use secrecy;
pub use ssh_encoding;
pub use ssh_key;

0 comments on commit 23c15e3

Please sign in to comment.