iron_secrets 0.3.0

Secrets management and encryption for Iron Cage
Documentation
[dependencies.aes-gcm]
version = "0.10"

[dependencies.argon2]
version = "0.5"

[dependencies.base64]
version = "0.22"

[dependencies.error_tools]
version = "0.35"

[dependencies.iron_runtime_state]
version = "0.3.0"

[dependencies.iron_types]
version = "0.3.0"

[dependencies.mod_interface]
version = "0.54"

[dependencies.rand]
version = "0.8"

[dependencies.serde]
features = ["derive"]
version = "1.0"

[dependencies.sqlx]
features = ["sqlite", "runtime-tokio-rustls"]
version = "0.8"

[dependencies.tokio]
features = ["full"]
version = "1.48"

[dependencies.tracing]
version = "=0.1.41"

[dependencies.zeroize]
version = "1"

[dev-dependencies.criterion]
version = "0.5"

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

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

[lints.clippy]
absolute_paths = "allow"
arbitrary_source_item_ordering = "allow"
cast_precision_loss = "allow"
doc_include_without_cfg = "warn"
implicit_return = "allow"
inline_always = "allow"
items_after_statements = "allow"
missing_docs_in_private_items = "allow"
missing_inline_in_public_items = "allow"
mod_module_files = "allow"
module_name_repetitions = "allow"
pub_use = "allow"
question_mark_used = "allow"
single_call_fn = "allow"
std_instead_of_alloc = "allow"
std_instead_of_core = "warn"
undocumented_unsafe_blocks = "deny"
wildcard_imports = "allow"

[lints.clippy.pedantic]
level = "warn"
priority = -1

[lints.rust]
missing_debug_implementations = "warn"
missing_docs = "warn"
unsafe_code = "warn"

[lints.rust.future_incompatible]
level = "warn"
priority = -1

[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1

[package]
authors = ["iron_cage contributors"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["cryptography"]
description = "Secrets management and encryption for Iron Cage"
edition = "2021"
keywords = ["secrets", "encryption", "key-management", "security"]
license = "MIT"
name = "iron_secrets"
readme = "readme.md"
repository = "https://github.com/.../iron_runtime"
rust-version = "1.70"
version = "0.3.0"

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

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