[package]
edition = "2021"
rust-version = "1.89"
name = "vissue-control"
version = "0.3.0"
authors = ["Rohit Goswami <rgoswami@ieee.org>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "JSON-RPC control wire for the vissue Unix socket: paths, framing, and typed methods"
homepage = "https://github.com/HaoZeke/vissue"
readme = "README.md"
keywords = [
"issue-tracker",
"orgmode",
"cli",
"mcp",
"plain-text",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/HaoZeke/vissue"
[lib]
name = "vissue_control"
path = "src/lib.rs"
[[test]]
name = "end_to_end"
path = "tests/end_to_end.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.vissue-core]
version = "0.3.0"
[dev-dependencies.tempfile]
version = "3"
[target."cfg(unix)".dependencies.nix]
version = "0.30"
features = [
"socket",
"user",
]
default-features = false
[lints.clippy]
all = "warn"
[lints.rust]
unsafe_code = "forbid"