[package]
edition = "2021"
rust-version = "1.87"
name = "ferrocrypt"
version = "0.3.0-beta.2"
authors = ["Alexander Alexandrov"]
build = false
exclude = ["tests/fixtures/"]
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Recipient-oriented file and directory encryption: passphrase (Argon2id) and X25519 public-key recipients, XChaCha20-Poly1305 STREAM payloads, HKDF-SHA3-256 / HMAC-SHA3-256 key derivation and authentication."
homepage = "https://github.com/alexylon/ferrocrypt"
documentation = "https://docs.rs/ferrocrypt"
readme = "README.md"
keywords = [
"cryptography",
"encryption",
"chacha20poly1305",
"argon2",
"X25519",
]
categories = ["cryptography"]
license = "GPL-3.0-only"
repository = "https://github.com/alexylon/ferrocrypt"
[features]
fuzzing = []
[lib]
name = "ferrocrypt"
path = "src/lib.rs"
[[test]]
name = "api_tests"
path = "tests/api_tests.rs"
[[test]]
name = "archive_fs_matrix"
path = "tests/archive_fs_matrix.rs"
[[test]]
name = "fixture_stability"
path = "tests/fixture_stability.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[dependencies.argon2]
version = "0.5"
features = ["std"]
[dependencies.bech32]
version = "0.11"
[dependencies.cap-fs-ext]
version = "4"
[dependencies.cap-std]
version = "4"
[dependencies.chacha20poly1305]
version = "0.10"
features = [
"std",
"stream",
]
[dependencies.constant_time_eq]
version = "0.4"
[dependencies.hkdf]
version = "0.13"
[dependencies.hmac]
version = "0.13"
[dependencies.secrecy]
version = "0.10"
[dependencies.sha3]
version = "0.11"
[dependencies.tempfile]
version = "3"
[dependencies.thiserror]
version = "2"
[dependencies.x25519-dalek]
version = "2"
features = ["static_secrets"]
[dependencies.zeroize]
version = "1"
[dev-dependencies.ctor]
version = "0.8"
[target.'cfg(any(target_os = "linux", target_os = "macos"))'.dependencies.rustix]
version = "1"
features = ["fs"]
[target."cfg(unix)".dependencies.libc]
version = "0.2"