28 lines
515 B
TOML
28 lines
515 B
TOML
|
|
[[bin]]
|
||
|
|
name = "nu_plugin_mcp"
|
||
|
|
path = "src/main.rs"
|
||
|
|
|
||
|
|
[lib]
|
||
|
|
name = "nu_plugin_mcp"
|
||
|
|
path = "src/lib.rs"
|
||
|
|
|
||
|
|
[package]
|
||
|
|
name = "nu_plugin_mcp"
|
||
|
|
version = "0.111.0"
|
||
|
|
edition = "2021"
|
||
|
|
description = "Nushell plugin for MCP server interaction — connect, discover, and call provisioning tools"
|
||
|
|
authors = ["Provisioning Team"]
|
||
|
|
license = "MIT"
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
serde_json = "1.0"
|
||
|
|
thiserror = "2.0"
|
||
|
|
interprocess = "^2.3.1"
|
||
|
|
nu-plugin = "0.111.0"
|
||
|
|
nu-protocol = "0.111.0"
|
||
|
|
|
||
|
|
[profile.release]
|
||
|
|
opt-level = 3
|
||
|
|
lto = true
|
||
|
|
codegen-units = 1
|