[package]
edition = "2021"
rust-version = "1.94"
name = "egide-storage-sqlite"
version = "0.1.0"
authors = ["Nubster <contact@nubster.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SQLite storage backend for Egide"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/nubster-opensources/egide"
[lib]
name = "egide_storage_sqlite"
path = "src/lib.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.egide-storage]
version = "0.1.0"
[dependencies.sqlx]
version = "0.9"
features = [
"runtime-tokio",
"sqlite",
"postgres",
]
default-features = false
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.40"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.tempfile]
version = "3.14"
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
similar_names = "allow"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.rust]
missing_docs = "deny"
unreachable_pub = "warn"
unsafe_code = "forbid"