fcrypt 0.3.2

Cross-platform CLI for password-based file encryption and decryption
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.74"
name = "fcrypt"
version = "0.3.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Cross-platform CLI for password-based file encryption and decryption"
homepage = "https://github.com/ThoisoiThree/fcrypt"
documentation = "https://docs.rs/fcrypt"
readme = "README.md"
keywords = [
    "encryption",
    "cli",
    "aes-gcm",
    "argon2",
    "security",
]
categories = [
    "command-line-utilities",
    "cryptography",
]
license = "MIT"
repository = "https://github.com/ThoisoiThree/fcrypt"

[features]
default = ["pqc"]
pqc = ["dep:oqs"]

[lib]
name = "fcrypt"
path = "src/lib.rs"

[[bin]]
name = "fcrypt"
path = "src/main.rs"

[[test]]
name = "integration"
path = "tests/integration.rs"

[dependencies.aes-gcm]
version = "0.10.3"

[dependencies.argon2]
version = "0.5.3"

[dependencies.base64]
version = "0.22"

[dependencies.ciborium]
version = "0.2"

[dependencies.clap]
version = "4.5.38"
features = ["derive"]

[dependencies.hex]
version = "0.4"

[dependencies.hkdf]
version = "0.12"

[dependencies.indicatif]
version = "0.18.4"

[dependencies.oqs]
version = "0.11"
features = [
    "std",
    "kems",
    "sigs",
    "vendored",
]
optional = true
default-features = false

[dependencies.rand]
version = "0.8.6"

[dependencies.rpassword]
version = "7.5.1"

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_bytes]
version = "0.11"

[dependencies.serde_json]
version = "1"

[dependencies.sha3]
version = "0.10"

[dependencies.tempfile]
version = "3.13.0"

[dependencies.thiserror]
version = "1.0.64"

[dependencies.zeroize]
version = "1.8.1"

[dev-dependencies.assert_cmd]
version = "2"

[dev-dependencies.predicates]
version = "3"

[profile.release]
lto = "fat"
codegen-units = 1
panic = "abort"
strip = "symbols"