kassandra-shared 0.0.3-alpha

Logic and types shared between multiple components of the service
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![no_std]
extern crate alloc;
#[cfg(feature = "std")]
extern crate std;

pub mod communication;
pub mod db;
pub mod ratls;
pub mod tee;

pub use communication::*;
pub use db::{Index, IndexList};