net-mel 0.10.0

Mélodium network utilities library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![cfg_attr(docsrs, feature(doc_cfg))]
#![doc = include_str!("../README.md")]

#[cfg(any(
    all(feature = "real", feature = "mock"),
    not(any(feature = "real", feature = "mock"))
))]
compile_error!("One of the two features 'real' or 'mock' must be enabled");

use melodium_macro::mel_package;

pub mod ip;

mel_package!();