sett 0.4.0

Rust port of sett (data compression, encryption and transfer tool).
Documentation
//! Library for Secure Encryption and Transfer Tool (sett).
#![warn(missing_docs)]

#[cfg(feature = "auth")]
pub mod auth;
pub mod decrypt;
pub mod destination;
pub mod encrypt;
mod filesystem;
pub mod gnupg;
mod io;
pub mod openpgp;
pub mod package;
pub mod portal;
pub mod progress;
pub mod remote;
pub mod secret;
pub mod task;
mod utils;
pub mod zip;