[package]
edition = "2021"
rust-version = "1.75"
name = "plugins-protocol"
version = "0.6.1"
authors = ["Shawn Hartsock <hartsock@users.noreply.github.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Newt-Agent provider-plugin JSON-RPC schema + reference client SDK"
homepage = "https://github.com/hartsock/newt-agent"
readme = false
keywords = [
"newt",
"agent",
"plugin",
"json-rpc",
"llm",
]
categories = ["api-bindings"]
license = "Apache-2.0"
repository = "https://github.com/hartsock/newt-agent"
[lib]
name = "plugins_protocol"
path = "src/lib.rs"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[lints.clippy]
explicit_iter_loop = "warn"
flat_map_option = "warn"
implicit_clone = "warn"
needless_for_each = "warn"
semicolon_if_nothing_returned = "warn"
uninlined_format_args = "warn"
use_self = "warn"
useless_conversion = "warn"