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
pub mod mocks;
pub mod test_serialize_json;
pub mod test_value_data;

pub use mocks::*;

use super::*;

#[expect(clippy::unused_async)]
pub async fn test_all() {
    test_serialize_json::test_serialize_json();
    test_value_data::value_data_ok();
    test_value_data::value_data_too_long();
}