[package] name = "bitbottle" version = "0.9.1" edition = "2021" description = "a modern archive file format" readme = "README.md" homepage = "https://code.lag.net/robey/bitbottle" repository = "https://code.lag.net/robey/bitbottle.git" license = "Apache-2.0" categories = [ "command-line-utilities", "compression", "cryptography", "filesystem" ] [profile.release] lto = "fat" [lib] name = "bitbottle" path = "src/lib.rs" [[bin]] name = "buzscan" path = "src/cli/buzscan.rs" [[bin]] name = "bitbottle" path = "src/cli/bitbottle.rs" [[bin]] name = "unbottle" path = "src/cli/unbottle.rs" [dependencies] aes = { version = "0.7.4", features = [ "ctr" ] } aes-gcm = "0.9.3" argonautica = "0.2.0" base64 = "0.13.0" bcrypt-pbkdf = "0.6.2" blake2 = "0.9.1" blake3 = { version = "1.3.0" } chacha20 = "0.7.2" chacha20poly1305 = "0.8.1" chrono = "0.4.19" cipher = "0.3.0" clap = "2.33.3" crc32c = "0.6.0" digest = "0.10.1" dryoc = "0.3.8" getrandom = "0.2.3" hex = "0.4.3" num_enum = "0.5.2" rpassword = "5.0.1" rust-lzma = "0.5.1" sha2 = "0.9.5" snap = "1.0.5" term_size = "0.3.2" thiserror = "1.0.26" users = "0.11.0"