[package]
edition = "2021"
name = "kanban-persistence-sqlite"
version = "0.5.1"
authors = ["Max Emil Yoon Blomstervall"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SQLite storage backend for the kanban project management tool"
homepage = "https://github.com/fulsomenko/kanban"
readme = "README.md"
keywords = [
"kanban",
"persistence",
"sqlite",
"storage",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/fulsomenko/kanban"
[lib]
name = "kanban_persistence_sqlite"
path = "src/lib.rs"
[[test]]
name = "data_store"
path = "tests/data_store.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.flate2]
version = "1"
[dependencies.kanban-core]
version = "^0.5"
[dependencies.kanban-domain]
version = "^0.5"
[dependencies.kanban-persistence]
version = "^0.5"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sqlx]
version = "0.8"
features = [
"runtime-tokio",
"sqlite",
]
default-features = false
[dependencies.tokio]
version = "1.42"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1.11"
features = [
"v4",
"serde",
]
[dev-dependencies.tempfile]
version = "3.8"
[dev-dependencies.tokio]
version = "1.42"
features = [
"full",
"full",
]