- Zeroize passwords in CLI prompts, handlers, and mount authentication - Preserve carrier_node_id when recovering Slot 0 via recovery key - Add --slot parameter to restore-header for targeted slot recovery - Implement online_backup and restore_from_backup using SQLite Online Backup API - Expose 'sanctum backup' and 'sanctum restore' CLI subcommands - Fix inactivity auto-lock by removing touch() from PROPFIND metadata/read_dir - Support O_APPEND by setting file cursor to file size on handle creation - Prevent data loss by implementing Drop for CarrierFile to flush dirty blocks - Optimize CSPRNG padding to only fill unwritten slack space - Batch carrier initialization in 500-block transactions to prevent UI/CLI freeze - Enforce 64-byte savings threshold for LZ4 compression - Add WebClient service diagnostic hint for Windows net use mount errors - Add unit and integration tests covering all new features
47 lines
1.5 KiB
TOML
47 lines
1.5 KiB
TOML
[package]
|
|
name = "sanctum"
|
|
version = "0.2.0"
|
|
edition = "2021"
|
|
authors = ["Harald Pansi <harald@pansi.eu>", "Sanctum Engineering Team"]
|
|
description = "Verschlüsselter Ein-Datei-Container unter Windows im reinen Userland via WebDAV"
|
|
license = "MIT"
|
|
repository = "https://gitea.pansi.eu/harald/sanctum"
|
|
homepage = "https://gitea.pansi.eu/harald/sanctum"
|
|
readme = "README.md"
|
|
keywords = ["encryption", "container", "windows", "webdav", "security"]
|
|
categories = ["cryptography", "command-line-utilities", "filesystem"]
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
rpassword = "7.3"
|
|
argon2 = { version = "0.5", features = ["password-hash"] }
|
|
aes-gcm = { version = "0.10", features = ["zeroize"] }
|
|
rand = "0.8"
|
|
zeroize = { version = "1.8", features = ["derive", "zeroize_derive"] }
|
|
rusqlite = { version = "0.32", features = ["bundled", "backup"] }
|
|
tokio = { version = "1.40", features = ["full"] }
|
|
dav-server = { version = "0.11", default-features = false }
|
|
hyper = { version = "1.4", features = ["server", "http1"] }
|
|
hyper-util = { version = "0.1", features = ["tokio", "server-auto"] }
|
|
http-body-util = "0.1"
|
|
bytes = "1.7"
|
|
futures-util = "0.3"
|
|
thiserror = "2.0"
|
|
anyhow = "1.0"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
dyn-clone = "1.0"
|
|
lz4_flex = "0.11"
|
|
bip39 = { version = "2.2", features = ["zeroize"] }
|
|
hex = "0.4"
|
|
tray-item = "0.10"
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
lto = true
|
|
codegen-units = 1
|
|
panic = "abort"
|
|
strip = true
|