[package]
edition = "2024"
name = "pidgin-lang"
version = "0.1.4"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A compact agent handoff protocol runtime — parse, validate, resolve, and expand Pidgin packets"
homepage = "https://github.com/manojpisini/pidgin"
documentation = "https://docs.rs/pidgin-lang"
readme = "README.md"
keywords = [
"pidgin",
"agent",
"handoff",
"protocol",
"llm",
]
categories = [
"parser-implementations",
"web-programming",
"config",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/manojpisini/pidgin"
resolver = "2"
[lib]
name = "pidgin_lang"
path = "src/lib.rs"
[[bin]]
name = "pidgin-lang"
path = "src/main.rs"
[[test]]
name = "proptest_parser"
path = "tests/proptest_parser.rs"
[dependencies.clap]
version = "4.6.1"
features = [
"std",
"derive",
]
default-features = false
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_yaml]
version = "=0.9.34"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.winnow]
version = "1.0.3"
[dev-dependencies.proptest]
version = "1"