shadow-crypt 1.0.9

Secure password-based file encryption with filename obfuscation
Documentation
[[bin]]
name = "shadow"
path = "src/bin/encryption.rs"

[[bin]]
name = "shadows"
path = "src/bin/listing.rs"

[[bin]]
name = "unshadow"
path = "src/bin/decryption.rs"

[dependencies.shadow-crypt-core]
version = "1"

[dependencies.shadow-crypt-shell]
version = "1"

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

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

[package]
authors = ["Simon Amadeus <code@simonamadeus.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "cryptography"]
description = "Secure password-based file encryption with filename obfuscation"
documentation = "https://docs.rs/shadow-crypt"
edition = "2024"
exclude = [".github/", ".gitignore"]
keywords = ["encryption", "cryptography", "file", "security", "cli"]
license = "MIT OR Apache-2.0"
name = "shadow-crypt"
publish = true
readme = "README.md"
repository = "https://github.com/simon-amadeus/shadow-crypt"
resolver = "2"
rust-version = "1.88"
version = "1.0.9"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--document-private-items"]

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

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

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

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