[package]
edition = "2021"
rust-version = "1.89"
name = "zynk"
version = "1.1.0"
build = false
include = [
"/Cargo.lock",
"/Cargo.toml",
"/CONTRIBUTING.md",
"/LICENSE",
"/PORTABILITY.md",
"/QUICKSTART.md",
"/README.md",
"/decisions/**",
"/examples/**",
"/scripts/**",
"/skills/**",
"/src/**",
"/tests/**",
"/tools/README.md",
"/tools/message-profile.yaml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Portable protocol and helper CLI for multi-agent collaboration."
documentation = "https://docs.rs/zynk"
readme = "README.md"
keywords = [
"agents",
"collaboration",
"cli",
"protocol",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
[[bin]]
name = "zynk"
path = "src/main.rs"
[[test]]
name = "zynk_cli"
path = "tests/zynk_cli.rs"
[dependencies.chacha20poly1305]
version = "0.10"
[dependencies.chrono]
version = "0.4"
features = ["clock"]
default-features = false
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.fs2]
version = "0.4"
[dependencies.rand]
version = "0.8"
[dependencies.rusqlite]
version = "0.32"
features = ["bundled"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_norway]
version = "0.9"
[dependencies.sha2]
version = "0.10"
[dev-dependencies.assert_cmd]
version = "2.0"
[dev-dependencies.tempfile]
version = "3.10"