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
pub mod mocks;
pub mod test_serialize_routing_table;
pub mod test_signed_node_info;

pub use mocks::*;

use super::*;

pub async fn test_all() {
    test_serialize_routing_table::test_routingtable_buckets_round_trip().await;
    test_serialize_routing_table::test_round_trip_peerinfo().await;
    test_signed_node_info::test_signed_node_info().await;
}