vissue-cli 0.9.2

vissue command line: plain-text issue tracking over per-project orgmode files
[package]
name = "vissue-cli"
description = "vissue command line: plain-text issue tracking over per-project orgmode files"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
readme.workspace = true
keywords.workspace = true
categories.workspace = true

[lints]
workspace = true

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

[dependencies]
# Parsing a tracker is allocation-bound: a profile of `count` over five
# thousand issues spends a third of its time in malloc and free, building the
# small strings every heading is made of. The system allocator is the slowest
# part of that and the cheapest to change.
mimalloc = { version = "0.1", default-features = false }
anyhow.workspace = true
clap.workspace = true
clap_complete.workspace = true
clap_mangen.workspace = true
serde = { workspace = true }
serde_json.workspace = true
vissue-control.workspace = true
vissue-core.workspace = true
vissue-serve.workspace = true
vissue-tui.workspace = true

[dev-dependencies]
serde = { workspace = true }
serde_json.workspace = true
tempfile.workspace = true