[package]
edition = "2024"
rust-version = "1.88"
name = "shadow-crypt-core"
version = "2.0.0"
authors = ["Simon Amadeus <code@simonamadeus.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core types and deterministic operations for shadow-crypt"
readme = false
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
[lib]
name = "shadow_crypt_core"
path = "src/lib.rs"
[[test]]
name = "property_tests"
path = "tests/property_tests.rs"
[dependencies.argon2]
version = "0.5"
[dependencies.chacha20poly1305]
version = "0.10"
[dependencies.zeroize]
version = "1"
[dev-dependencies.proptest]
version = "1"