[package]
edition = "2024"
rust-version = "1.85"
name = "fileluya"
version = "0.1.1"
authors = ["Love JESUS (@loveJesus)"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "FiLeLuYa — Secure, encrypted reactive filesystem with hybrid post-quantum cryptography"
readme = "README.md"
keywords = [
"filesystem",
"fuse",
"encryption",
"post-quantum",
"sync",
]
categories = [
"command-line-utilities",
"filesystem",
"cryptography",
]
license = "MIT"
repository = "https://github.com/loveJesus/fileluya"
resolver = "2"
[features]
default = ["gui"]
gui = ["dep:fileluya-gui-chirho"]
[lib]
name = "fileluya_fuse_chirho"
path = "src/lib.rs"
[[bin]]
name = "fileluya"
path = "src/main_chirho.rs"
[[test]]
name = "conflict_integration_chirho"
path = "tests/conflict_integration_chirho.rs"
[[test]]
name = "forge_cross_client_chirho"
path = "tests/forge_cross_client_chirho.rs"
[[test]]
name = "forge_integration_chirho"
path = "tests/forge_integration_chirho.rs"
[[test]]
name = "integration_chirho"
path = "tests/integration_chirho.rs"
[[test]]
name = "lock_integration_chirho"
path = "tests/lock_integration_chirho.rs"
[[test]]
name = "mount_e2e_chirho"
path = "tests/mount_e2e_chirho.rs"
[[test]]
name = "multiuser_e2e_chirho"
path = "tests/multiuser_e2e_chirho.rs"
[[test]]
name = "sharing_integration_chirho"
path = "tests/sharing_integration_chirho.rs"
[[test]]
name = "windows_integration_chirho"
path = "tests/windows_integration_chirho.rs"
[dependencies.anyhow]
version = "1"
[dependencies.bytes]
version = "1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.ctrlc]
version = "3"
[dependencies.dirs]
version = "6"
[dependencies.fileluya-crypto-chirho]
version = "0.1.0"
package = "fileluya-crypto"
[dependencies.fileluya-gui-chirho]
version = "0.1.1"
optional = true
[dependencies.fileluya-lattices-chirho]
version = "0.1.0"
package = "fileluya-lattices"
[dependencies.fileluya-ledger-chirho]
version = "0.1.0"
package = "fileluya-ledger"
[dependencies.fileluya-proto-chirho]
version = "0.1.0"
package = "fileluya-proto"
[dependencies.fuser]
version = "0.15"
[dependencies.futures]
version = "0.3"
[dependencies.hex]
version = "0.4"
[dependencies.libc]
version = "0.2"
[dependencies.propagators-chirho]
version = "0.3"
features = [
"serde",
"network",
"tms-full",
]
[dependencies.rand]
version = "0.8"
[dependencies.rpassword]
version = "7"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tokio-tungstenite]
version = "0.24"
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
[dependencies.x25519-dalek]
version = "2"
features = ["static_secrets"]
[dev-dependencies.tempfile]
version = "3"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ['cfg(feature, values("gui", "wasmtime"))']