[package]
edition = "2024"
name = "jolokia"
version = "0.9.2"
authors = ["Quentin Richert <noreply@richert.co>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Simple, strong encryption."
readme = "README.md"
keywords = [
"encryption",
"encryption-cli",
"file-encryption",
"chacha20-poly1305",
"hpke",
]
categories = [
"command-line-utilities",
"cryptography",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/qrichert/jolokia.git"
[lib]
name = "jolokia"
path = "src/lib.rs"
[[bin]]
name = "jolokia"
path = "src/main.rs"
[[test]]
name = "test_bin_brainfuck"
path = "tests/test_bin_brainfuck.rs"
[[test]]
name = "test_bin_chacha"
path = "tests/test_bin_chacha.rs"
[[test]]
name = "test_bin_hpke"
path = "tests/test_bin_hpke.rs"
[[test]]
name = "test_bin_jolokia"
path = "tests/test_bin_jolokia.rs"
[[test]]
name = "test_bin_rotn"
path = "tests/test_bin_rotn.rs"
[dependencies.aead]
version = "0.6.1"
features = ["getrandom"]
[dependencies.aead-stream]
version = "0.6.0"
features = ["alloc"]
[dependencies.base64]
version = "0.23.0"
[dependencies.chacha20poly1305]
version = "0.11.0"
[dependencies.hpke]
version = "0.14.0"
[dependencies.lessify]
version = "0.6.0"
[dependencies.secrecy]
version = "0.10.3"
[dev-dependencies.blake3]
version = "1.8.5"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(tarpaulin_include)"]
[profile.release]
lto = "fat"
codegen-units = 1
panic = "abort"
strip = true