homomorphic_actors 0.0.1

Homomorphic Actors is a look at homomorphic encryption as run inside an actor model system.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use env_logger::{Builder, Env};
use log::info;


fn get_loggings() {
    let env = Env::default().filter_or("MY_LOG_LEVEL", "info");
    Builder::from_env(env).init()
}


#[tokio::main]
 async fn main() {
    get_loggings();
    info!("Starting the homomorphic actors example...");
    
}