[package]
edition = "2024"
rust-version = "1.89"
name = "vissue-control"
version = "0.7.0"
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://vissue.rgoswami.me"
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.7.0"
[dev-dependencies.tempfile]
version = "3"
[target."cfg(unix)".dependencies.nix]
version = "0.30"
features = [
"socket",
"user",
]
default-features = false
[lints.clippy]
dbg_macro = "warn"
missing_errors_doc = "warn"
missing_panics_doc = "warn"
todo = "warn"
undocumented_unsafe_blocks = "warn"
unimplemented = "warn"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "allow"
priority = -1
[lints.rust]
missing_debug_implementations = "warn"
missing_docs = "warn"
unsafe_code = "forbid"
[lints.rust.rust_2024_compatibility]
level = "warn"
priority = -1
[lints.rustdoc]
broken_intra_doc_links = "deny"
missing_crate_level_docs = "warn"
unescaped_backticks = "warn"