pageant 0.2.1

Pageant SSH agent transport client.
Documentation
//! # Pageant SSH agent transport protocol implementation
//!
//! This crate provides a [PageantStream] type that implements [AsyncRead] and [AsyncWrite] traits and can be used to talk to a running Pageant instance.
//!
//! This crate only implements the transport, not the actual SSH agent protocol.

#![deny(
    clippy::unwrap_used,
    clippy::expect_used,
    clippy::indexing_slicing,
    clippy::panic
)]

mod error;
pub use error::*;

#[cfg(all(windows, feature = "wmmessage"))]
pub mod wmmessage;

#[cfg(all(windows, feature = "namedpipes"))]
pub mod namedpipes;

#[cfg(windows)]
mod interface;

#[cfg(windows)]
pub use interface::*;