rigger 0.4.2

One seat for all your projects and tasks: a local record of what is done, what is next and when it ships - read by you and your coding assistant
[package]
name = "rigger"
version = "0.4.2"
edition = "2024"
rust-version = "1.88"
description = "One seat for all your projects and tasks: a local record of what is done, what is next and when it ships - read by you and your coding assistant"
license = "MIT"
repository = "https://github.com/lacodda/rigger"
homepage = "https://github.com/lacodda/rigger"
readme = "README.md"
keywords = ["cli", "developer-tools", "project-management", "mcp", "release"]
categories = ["command-line-utilities", "development-tools"]
authors = ["Kirill Lakhtachev <lahtachev@gmail.com>"]
# assets/icon.ico is required by build.rs on Windows; the rest of the brand
# artwork only serves GitHub and the docs site.
exclude = [
    "docs/",
    ".github/",
    "cliff.toml",
    "rustfmt.toml",
    "assets/social-preview.png",
    "assets/logo-512.png",
    "assets/apple-touch-icon.png",
    "assets/favicon-32.png",
]

[target.'cfg(windows)'.build-dependencies]
winresource = "0.1"

[dependencies]
anyhow = "1"
clap = { version = "4.5", features = ["derive"] }
directories = "6"
dunce = "1"
jiff = "0.2"
# bundled: no system SQLite to find or version-match on any platform.
# backup: the database is copied through SQLite's own API before a migration,
# which is consistent even while another process holds it open.
rusqlite = { version = "0.38", features = ["bundled", "backup"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"

[dev-dependencies]
assert_cmd = "2"
predicates = "3"
tempfile = "3"

# Line-table debug info keeps backtraces readable while cutting the .pdb weight
# that dominates target/debug. Full debug info is a one-line revert when needed.
[profile.dev]
debug = 1