[package]
name = "encrypted_fs"
description = "An encrypted file system that mounts with FUSE. It can be used to create encrypted directories."
version = "0.1.2"
edition = "2021"
license = "MIT OR Apache-2.0"
[dependencies]
clap = { version = "4.5.4", features = ["derive", "cargo"] }
libc = "0.2.153"
env_logger = "0.11.3"
log = "0.4.21"
serde = { version = "1.0.197", features = ["derive"] }
bincode = "1.3.3"
thiserror = "1.0.58"
rand = "0.3"
base64 = "=0.13.1"
openssl = "=0.10.64"
rust-crypto = "=0.2.36"
fuse3 = { version = "0.7.1", features = ["tokio-runtime", "unprivileged"] }
tokio = { version = "1.36", features = ["macros", "rt-multi-thread", "time", "signal"] }
futures-util = "0.3.30"
mio = { version = "0.8.11", features = ["os-poll"] }
bytes = "1.5"
tracing = "0.1.40"
tracing-subscriber = "0.3"
ctrlc = "3.1.9"
parking_lot = "0.12.1"
pbkdf2 = "0.13.0-pre.0"
sha2 = "0.11.0-pre.3"
strum = "0.26.2"
strum_macros = "0.26.2"
rpassword = "7.3.1"
cryptostream = "0.3.2"