cache-vault 0.1.3

Caching secret values to SQLite with encryption
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "cache-vault"
version = "0.1.3"
authors = ["okkez <okkez000@gmail.com>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Caching secret values to SQLite with encryption"
homepage = "https://github.com/okkez/cache-vault"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/okkez/cache-vault"

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

[dependencies.anyhow]
version = "1.0.86"

[dependencies.argon2]
version = "0.5.3"

[dependencies.base32]
version = "0.5.0"

[dependencies.chacha20poly1305]
version = "0.10.1"
features = ["std"]

[dependencies.chrono]
version = "0.4.38"
features = ["serde"]

[dependencies.dirs]
version = "6.0.0"

[dependencies.futures]
version = "0.3.30"

[dependencies.keyring]
version = "3.0.0"
features = ["linux-native"]

[dependencies.sqlx]
version = "0.8.0"
features = [
    "sqlite",
    "chrono",
    "runtime-tokio-native-tls",
]

[dependencies.tempfile]
version = "3.12.0"

[dependencies.thiserror]
version = "2.0"

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

[dependencies.tracing]
version = "0.1.0"

[dev-dependencies.tracing-test]
version = "0.2"

[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
strip = true