veilid-core 0.5.3

Core library used to create a Veilid node and operate it as part of an application
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod api_tracing_layer;
mod duration_recorder;
mod fmt_strip_veilid_fields;
mod macros;
mod veilid_layer_filter;
#[cfg(not(all(target_arch = "wasm32", target_os = "unknown")))]
mod veilid_tracing;

use super::*;

pub use api_tracing_layer::*;
pub use duration_recorder::*;
pub use fmt_strip_veilid_fields::*;
pub use veilid_layer_filter::*;
#[cfg(not(all(target_arch = "wasm32", target_os = "unknown")))]
pub use veilid_tracing::*;

pub(crate) use macros::*;