diff --git a/Cargo.lock b/Cargo.lock index 1d88283b..e120e562 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -811,7 +811,7 @@ dependencies = [ [[package]] name = "rencfs" -version = "0.1.34" +version = "0.1.35" dependencies = [ "base64", "bincode", diff --git a/Cargo.toml b/Cargo.toml index 90aea0de..b1153b2c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "rencfs" description = "An encrypted file system that mounts with FUSE on Linux. It can be used to create encrypted directories." -version = "0.1.34" +version = "0.1.35" edition = "2021" license = "Apache-2.0" authors = ["Radu Marias "] diff --git a/src/main.rs b/src/main.rs index 77677be7..64875258 100644 --- a/src/main.rs +++ b/src/main.rs @@ -269,7 +269,7 @@ async fn run_normal(matches: ArgMatches, data_dir: &String, cipher: Cipher, deri matches.get_flag("direct-io"), matches.get_flag("suid")).await; } -#[instrument] +#[instrument(skip(password))] async fn run_fuse(mountpoint: &str, data_dir: &str, password: &str, cipher: Cipher, derive_key_hash_rounds: u32, allow_root: bool, allow_other: bool, direct_io: bool, suid_support: bool) { let uid = unsafe { libc::getuid() };