ndn 0.0.1

[WIP] NDN - Named Data Networking in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Named Data Networking (aka Internet 2.0)
//!
#![doc(html_root_url = "https://docs.rs/ndn/0.0.1")]
#![cfg_attr(all(feature = "cargo-clippy", feature = "pedantic"), warn(clippy_pedantic))]

extern crate bytes;

pub mod error;
pub mod tlv;

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {}
}