omnyssh-core 1.1.0

SSH engine, configs, metrics, and updater powering OmnySSH frontends
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! OmnySSH core — the frontend-agnostic engine.
//!
//! Hosts the SSH engine, configuration handling, domain events, and the
//! self-updater. Frontends (the `omnyssh` TUI today, others later) depend on
//! this crate and never the other way around: nothing here may depend on
//! terminal-rendering, input, or CLI crates.

pub mod config;
pub mod event;
pub mod ssh;
pub mod update;
pub mod utils;