//! This crate implements a minimal SSH server for embedded targets; please refer to
//! the project repository README.md for more information and for examples of usage.
//!
//! The library works in the following way:
//!
//! 1. Write a type implementing the `Behavior` trait as desired;
//! 2. Instantiate a `Transport` backed by some async I/O stream;
//! 3. Loop, receiving new client requests via `Channel` objects;
//! 4. Handle each request, reading or writing into the channel.
//!
//! The API is designed to be minimal and simple to use.
pub use ;
pub use ;
pub use Transport;
pub use ;
pub use DisconnectReason;
pub extern crate ed25519_dalek;