Skip to main content

asimov_protocol/
lib.rs

1// This is free and unencumbered software released into the public domain.
2
3#![no_std]
4#![forbid(unsafe_code)]
5#![cfg_attr(docsrs, feature(doc_cfg))]
6
7extern crate alloc;
8
9#[cfg(feature = "std")]
10extern crate std;
11
12mod ping_protocol;
13pub use ping_protocol::*;