[package]
edition = "2024"
name = "kinjo"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Kinjo: mDNS TUI and commands launch for local network services"
readme = "README.md"
keywords = [
"avahi",
"tui",
"zeroconf",
"dns-sd",
"mdns",
]
categories = [
"command-line-utilities",
"network-programming",
]
license-file = "LICENSE"
repository = "https://github.com/abbyssoul/kinjo"
[package.metadata.deb]
maintainer = "Ivan Ryabov <abbyssoul@gmail.com>"
copyright = "2026, Ivan Ryabov <abbyssoul@gmail.com>"
depends = "$auto"
assets = [
[
"target/release/kinjo",
"usr/bin/",
"755",
],
[
"README.md",
"usr/share/doc/kinjo/README.md",
"644",
],
[
"LICENSE",
"usr/share/doc/kinjo/LICENSE",
"644",
],
[
"actions/*.toml",
"etc/kinjo/commands/",
"644",
],
]
[features]
default = []
zeroconf = [
"dep:zeroconf-tokio",
"tokio/rt-multi-thread",
]
[lib]
name = "kinjo"
path = "src/lib.rs"
[[bin]]
name = "kinjo"
path = "src/main.rs"
[dependencies.clap]
version = "4.6.1"
[dependencies.color-eyre]
version = "0.6.5"
[dependencies.crossterm]
version = "0.29.0"
[dependencies.futures]
version = "0.3.32"
[dependencies.libc]
version = "0.2.186"
[dependencies.mdns-sd-discovery]
version = "0.2.0"
[dependencies.ratatui]
version = "0.30.2"
[dependencies.regex]
version = "1.12.4"
[dependencies.serde]
version = "1.0.228"
[dependencies.serde_derive]
version = "1.0.228"
[dependencies.tokio]
version = "1.52.3"
features = [
"rt",
"macros",
"time",
]
[dependencies.tokio-util]
version = "0.7.18"
[dependencies.toml]
version = "1.1.2"
[dependencies.zeroconf-tokio]
version = "0.3.2"
optional = true