[package]
edition = "2024"
rust-version = "1.88"
name = "db-keystore"
version = "0.5.0"
authors = ["Steve Schoettler <stevelr-git@pm.me>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Encrypted SQLite credential store for the `keyring-core` API, backed by turso"
homepage = "https://github.com/stevelr/db-keystore"
readme = "README.md"
keywords = [
"keyring",
"credential",
"sqlite",
"turso",
"secrets-manager",
]
categories = [
"database",
"api-bindings",
]
license = "MIT or Apache-2.0"
repository = "https://github.com/stevelr/db-keystore"
[lib]
name = "db_keystore"
path = "src/lib.rs"
[[bin]]
name = "db-keystore"
path = "bin/db-keystore.rs"
[[example]]
name = "basic_keystore"
path = "examples/basic_keystore.rs"
[[example]]
name = "bin_secrets"
path = "examples/bin_secrets.rs"
[[example]]
name = "dump-db-keystore"
path = "examples/dump-db-keystore.rs"
[[example]]
name = "encrypted_keystore"
path = "examples/encrypted_keystore.rs"
[[example]]
name = "encrypted_wrongkey"
path = "examples/encrypted_wrongkey.rs"
[[test]]
name = "rekey"
path = "tests/rekey.rs"
[[test]]
name = "sidecar_pin"
path = "tests/sidecar_pin.rs"
[[test]]
name = "stress"
path = "tests/stress.rs"
[[test]]
name = "vfs_encryption"
path = "tests/vfs_encryption.rs"
[dependencies.anyhow]
version = "1.0.104"
[dependencies.clap]
version = "4.6.4"
features = ["derive"]
[dependencies.futures]
version = "0.3.33"
[dependencies.keyring-core]
version = "1.0.0"
[dependencies.log]
version = "0.4.33"
[dependencies.regex]
version = "1.13.1"
[dependencies.serde]
version = "1.0.229"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.151"
[dependencies.turso]
version = "0.7.1"
features = ["mimalloc"]
default-features = false
[dependencies.uuid]
version = "1.24.0"
features = ["v7"]
[dependencies.zeroize]
version = "1.9.0"
[dev-dependencies.tempfile]
version = "3.27.0"
[target."cfg(unix)".dependencies.rustix]
version = "1.1"
features = ["fs"]