crypt4ghfs 0.3.0

Fuse layer exposing Crypt4GH-encrypted files, as if they were decrypted
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use std::path::PathBuf;

/// Fuse layer exposing Crypt4GH-encrypted files, as if they were decrypted.
#[derive(clap::Parser)]
#[clap(about, version, author)]
pub struct Args {
	/// Display debug information
	#[clap(short, long)]
	pub verbose: bool,

	/// Path to the config file
	#[clap(short, long)]
	pub conf: PathBuf,

	/// Path to the mountpoint
	#[clap()]
	pub mountpoint: PathBuf,
}