sett 0.4.0

Rust port of sett (data compression, encryption and transfer tool).
Documentation
1
2
3
4
5
6
7
8
9
10
11
use sett::portal::Portal;

#[tokio::main(flavor = "current_thread")]
async fn main() -> Result<(), Box<dyn core::error::Error>> {
    let portal = Portal::new("http://localhost:8000")?;
    let fingerprints = portal
        .get_key_status(&["095F7F80127F704CDC0CA991B24CE13C32FCE9B4"])
        .await?;
    println!("Fingerprint status received: {fingerprints:?}");
    Ok(())
}