radroots_net_core/lib.rs
1#![cfg_attr(not(feature = "std"), no_std)]
2
3extern crate alloc;
4
5pub mod error;
6pub mod net;
7
8#[cfg(feature = "std")]
9pub mod logging;
10
11pub mod builder;
12pub mod config;
13
14#[cfg(feature = "nostr-client")]
15pub mod keys;
16
17#[cfg(feature = "nostr-client")]
18pub mod nostr_client;
19
20pub use net::{Net, NetHandle, NetInfo};