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