loco_protocol/
lib.rs

1/*
2 * Created on Sat Nov 28 2020
3 *
4 * Copyright (c) storycraft. Licensed under the MIT Licence.
5 */
6
7//! # `loco-protocol`: Rust Loco protocol implementation
8//! This crate provides low brick for building client on it
9//!
10//! ## Specification
11#![doc = include_str!("../specification.md")]
12#![no_std]
13extern crate alloc;
14
15// Loco protocol implementation
16pub mod command;
17
18/// Secure loyer implementation
19pub mod secure;