libkeri 0.1.0

A Rust library for KERI (Key Event Receipt Infrastructure)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use libkeri;

#[tokio::main]
async fn main() {
    // Initialize the library
    if let Err(e) = libkeri::init() {
        eprintln!("Failed to initialize KERI library: {}", e);
        return;
    }

    println!("Hello KERI!");
}