kanban-cli 0.5.0

Command-line interface for the kanban project management tool
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "kanban-cli"
version = "0.5.0"
authors = ["Max Emil Yoon Blomstervall"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line interface for the kanban project management tool"
homepage = "https://github.com/fulsomenko/kanban"
readme = "README.md"
keywords = [
    "kanban",
    "cli",
    "terminal",
    "project-management",
    "productivity",
]
categories = ["command-line-utilities"]
license = "Apache-2.0"
repository = "https://github.com/fulsomenko/kanban"

[features]
default = [
    "tui",
    "json",
    "sqlite",
]
json = ["kanban-service/json"]
sqlite = ["kanban-service/sqlite"]
tui = ["dep:kanban-tui"]

[lib]
name = "kanban_cli"
path = "src/lib.rs"

[[bin]]
name = "kanban"
path = "src/main.rs"

[[test]]
name = "cli_app_builder"
path = "tests/cli_app_builder.rs"

[[test]]
name = "cli_app_run_no_backends"
path = "tests/cli_app_run_no_backends.rs"

[[test]]
name = "cli_integration"
path = "tests/cli_integration.rs"

[[test]]
name = "migrate"
path = "tests/migrate.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.chrono]
version = "0.4"
features = ["serde"]

[dependencies.clap]
version = "4.5"
features = [
    "derive",
    "env",
    "string",
]

[dependencies.clap_complete]
version = "4.5"

[dependencies.kanban-core]
version = "^0.5"

[dependencies.kanban-domain]
version = "^0.5"

[dependencies.kanban-persistence]
version = "^0.5"

[dependencies.kanban-service]
version = "^0.5"

[dependencies.kanban-tui]
version = "^0.5"
optional = true

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.tokio]
version = "1.42"
features = ["full"]

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]

[dependencies.uuid]
version = "1.11"
features = [
    "v4",
    "serde",
]

[dev-dependencies.assert_cmd]
version = "2.0"

[dev-dependencies.kanban-persistence-json]
version = "^0.5"

[dev-dependencies.kanban-persistence-sqlite]
version = "^0.5"

[dev-dependencies.predicates]
version = "3.0"

[dev-dependencies.tempfile]
version = "3.8"