metalssh 0.0.1

Experimental SSH implementation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![doc = include_str!("../README.md")]
#![cfg_attr(not(test), no_std)]
#![forbid(unsafe_code)]
#![feature(slice_as_array)]
#![warn(clippy::pedantic)]
#![allow(clippy::missing_errors_doc)] // TODO: Remove when stable

#[cfg(feature = "alloc")]
extern crate alloc;

pub mod constants;
pub mod crypto;
pub mod msg;
pub mod types;
pub mod wire;