mirror of
https://github.com/Astatin3/unshell.git
synced 2026-06-09 06:47:59 -06:00
Add packet.
This commit is contained in:
@@ -1,20 +1,6 @@
|
||||
//! # UnShell Protocol
|
||||
//!
|
||||
//! The protocol crate owns the wire types, framing, validation helpers, and the
|
||||
//! small tree runtime used by endpoint implementations.
|
||||
|
||||
#![no_std]
|
||||
|
||||
pub extern crate alloc;
|
||||
#[allow(unused_extern_crates)]
|
||||
extern crate self as unshell;
|
||||
|
||||
/// Keep the historical nested path so existing imports and proc-macro output can
|
||||
/// continue to target `unshell::protocol::...` while the implementation lives in
|
||||
/// its own crate.
|
||||
pub mod protocol;
|
||||
|
||||
pub use protocol::*;
|
||||
|
||||
#[cfg(test)]
|
||||
pub use unshell_macros::{Procedure, leaf, procedures};
|
||||
pub mod packet;
|
||||
pub mod utils;
|
||||
|
||||
Reference in New Issue
Block a user