[package]
edition = "2021"
rust-version = "1.82"
name = "deck-store"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SQLite session store for ono-sendai (age encryption planned for 0.2)"
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/hinanohart/ono-sendai"
[lib]
name = "deck_store"
path = "src/lib.rs"
[dependencies.age]
version = "0.11"
[dependencies.anyhow]
version = "1"
[dependencies.async-trait]
version = "0.1"
[dependencies.deck-core]
version = "0.1.1"
[dependencies.dirs]
version = "5"
[dependencies.rusqlite]
version = "0.32"
features = ["bundled"]
[dependencies.secrecy]
version = "0.10"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "1"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1"
features = [
"v4",
"serde",
]
[dependencies.zeroize]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
cognitive_complexity = "allow"
collapsible_if = "allow"
collapsible_match = "allow"
doc_lazy_continuation = "allow"
items_after_statements = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
multiple_crate_versions = "allow"
must_use_candidate = "allow"
needless_continue = "allow"
needless_pass_by_value = "allow"
option_if_let_else = "allow"
or_fun_call = "allow"
redundant_closure_for_method_calls = "allow"
return_self_not_must_use = "allow"
significant_drop_in_scrutinee = "allow"
significant_drop_tightening = "allow"
too_long_first_doc_paragraph = "allow"
unnecessary_wraps = "allow"
unused_async = "allow"
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_debug_implementations = "warn"
unsafe_code = "deny"