Skip to content

Commit

Permalink
Re-export types that we use in our public API
Browse files Browse the repository at this point in the history
Signed-off-by: Wiktor Kwapisiewicz <[email protected]>
  • Loading branch information
wiktor-k committed Jun 6, 2024
1 parent 160fb0b commit 47c4b32
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 47c4b32

Please sign in to comment.