[package]
edition = "2024"
rust-version = "1.88"
name = "shadow-crypt"
version = "1.1.0"
authors = ["Simon Amadeus <code@simonamadeus.com>"]
build = false
exclude = [
".github/",
".gitignore",
]
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Secure password-based file encryption with filename obfuscation"
documentation = "https://docs.rs/shadow-crypt"
readme = "README.md"
keywords = [
"encryption",
"cryptography",
"file",
"security",
"cli",
]
categories = [
"command-line-utilities",
"cryptography",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/simon-amadeus/shadow-crypt"
resolver = "2"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--document-private-items"]
[lib]
name = "shadow_crypt"
path = "src/lib.rs"
[[bin]]
name = "shadow"
path = "src/bin/encryption.rs"
[[bin]]
name = "shadows"
path = "src/bin/listing.rs"
[[bin]]
name = "unshadow"
path = "src/bin/decryption.rs"
[[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"
[dependencies.shadow-crypt-core]
version = "1"
[dependencies.shadow-crypt-shell]
version = "1"
[dev-dependencies.tempfile]
version = "3"