[package]
edition = "2021"
rust-version = "1.85"
name = "vs-store"
version = "0.1.6"
authors = ["Frane Bandov <frane.bandov@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SQLite-backed durable state for vibesurfer."
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/frane/vibesurfer"
[lib]
name = "vs_store"
path = "src/lib.rs"
[[test]]
name = "end_to_end"
path = "tests/end_to_end.rs"
[dependencies.keyring-core]
version = "1"
[dependencies.ring]
version = "0.17"
[dependencies.rusqlite]
version = "0.39"
features = ["bundled"]
[dependencies.thiserror]
version = "2"
[dev-dependencies.tempfile]
version = "3"
[target.'cfg(target_os = "linux")'.dependencies.linux-keyutils-keyring-store]
version = "1"
[target.'cfg(target_os = "macos")'.dependencies.apple-native-keyring-store]
version = "1"
features = ["keychain"]
[target.'cfg(target_os = "windows")'.dependencies.windows-native-keyring-store]
version = "1"
[lints.clippy]
doc_markdown = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "warn"