[package]
edition = "2021"
name = "self_crypto_key"
version = "0.1.1"
authors = ["April <zhao@zhaocloud.work>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A library for self-modifying encrypted key storage in binaries"
readme = "README.md"
keywords = [
"encryption",
"security",
"self-modification",
"key-storage",
]
categories = [
"cryptography",
"encoding",
]
license = "MIT"
repository = "https://github.com/zhao-leo/self_crypto_key"
[lib]
name = "self_crypto_key"
path = "src/lib.rs"
[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"
[[example]]
name = "build_time_randomization"
path = "examples/build_time_randomization.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[dev-dependencies.tempfile]
version = "3.8"
[target.'cfg(target_os = "linux")'.dependencies.object]
version = "0.32"
[target.'cfg(target_os = "linux")'.dependencies.rand]
version = "0.8"
[target.'cfg(target_os = "linux")'.dependencies.serde]
version = "1.0"
features = ["derive"]
[target.'cfg(target_os = "linux")'.dependencies.serde_json]
version = "1.0"
[target.'cfg(target_os = "linux")'.dependencies.sha2]
version = "0.10"