[package]
edition = "2024"
rust-version = "1.88"
name = "rigger"
version = "0.20.0"
authors = ["Kirill Lakhtachev <lahtachev@gmail.com>"]
build = "build.rs"
exclude = [
"docs/",
".github/",
"cliff.toml",
"rustfmt.toml",
"assets/social-preview.png",
"assets/logo-512.png",
"assets/apple-touch-icon.png",
"assets/favicon-32.png",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
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"
homepage = "https://github.com/lacodda/rigger"
readme = "README.md"
keywords = [
"cli",
"developer-tools",
"project-management",
"mcp",
"release",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/lacodda/rigger"
[[bin]]
name = "rigger"
path = "src/main.rs"
[[test]]
name = "adopt"
path = "tests/adopt.rs"
[[test]]
name = "answers"
path = "tests/answers.rs"
[[test]]
name = "calendar"
path = "tests/calendar.rs"
[[test]]
name = "card"
path = "tests/card.rs"
[[test]]
name = "changes"
path = "tests/changes.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "export"
path = "tests/export.rs"
[[test]]
name = "gate"
path = "tests/gate.rs"
[[test]]
name = "line"
path = "tests/line.rs"
[[test]]
name = "mcp"
path = "tests/mcp.rs"
[[test]]
name = "owner"
path = "tests/owner.rs"
[[test]]
name = "profile"
path = "tests/profile.rs"
[[test]]
name = "reimport"
path = "tests/reimport.rs"
[[test]]
name = "release_consistency"
path = "tests/release_consistency.rs"
[[test]]
name = "retro"
path = "tests/retro.rs"
[[test]]
name = "rules"
path = "tests/rules.rs"
[[test]]
name = "search"
path = "tests/search.rs"
[[test]]
name = "session"
path = "tests/session.rs"
[[test]]
name = "skill"
path = "tests/skill.rs"
[[test]]
name = "status"
path = "tests/status.rs"
[[test]]
name = "sync"
path = "tests/sync.rs"
[[test]]
name = "week"
path = "tests/week.rs"
[[test]]
name = "wishes"
path = "tests/wishes.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.directories]
version = "6"
[dependencies.dunce]
version = "1"
[dependencies.gix]
version = "0.87.1"
features = [
"max-performance-safe",
"sha1",
"basic",
"revision",
]
default-features = false
[dependencies.jiff]
version = "0.2"
[dependencies.rusqlite]
version = "0.40"
features = [
"bundled",
"backup",
]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.toml]
version = "1"
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.jiff]
version = "0.2"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.rusqlite]
version = "0.40"
features = ["bundled"]
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[target."cfg(windows)".build-dependencies.winresource]
version = "0.1"
[profile.dev]
debug = 1