mirror of
https://github.com/block/buzz.git
synced 2026-08-18 06:50:31 +02:00
Signed-off-by: Will Pfleger <pfleger.will@gmail.com> Co-authored-by: npub1mn7jgtj4w2pd0g0zeuhxsa6jy6p0rewxz4kujt98my82ahfmp72sxjexk7 <dcfd242e557282d7a1e2cf2e6877522682f1e5c6156dc92ca7d90eaedd3b0f95@sprout-oss.stage.blox.sqprod.co>
50 lines
1.8 KiB
TOML
50 lines
1.8 KiB
TOML
[package]
|
|
name = "buzz-dev-mcp"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
|
|
[lib]
|
|
name = "buzz_dev_mcp"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "buzz-dev-mcp"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
buzz-cli = { path = "../buzz-cli" }
|
|
git-credential-nostr = { path = "../git-credential-nostr" }
|
|
git-sign-nostr = { path = "../git-sign-nostr" }
|
|
nostr = { workspace = true }
|
|
zeroize = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tokio-util = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
rmcp = { workspace = true }
|
|
schemars = { workspace = true }
|
|
similar = "3"
|
|
tempfile = "3"
|
|
ignore = "0.4.25"
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
# view_image tool: HTTP fetch (workspace reqwest is already used by buzz-cli;
|
|
# adding it here is essentially free), base64 encoding, and decode/resize.
|
|
reqwest = { workspace = true }
|
|
base64 = "0.22"
|
|
image = { version = "0.25", default-features = false, features = ["jpeg", "png", "gif", "webp"] }
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
nix = { version = "0.31", default-features = false, features = ["signal", "process"] }
|
|
|
|
# Windows Job Object APIs for the shell tool's timeout kill path: terminating a
|
|
# job kills the bash child AND every MSYS grandchild it forked, the Windows
|
|
# analogue of the Unix killpg above. windows-sys 0.61 is already workspace-
|
|
# resident (pulled transitively), so this adds no new crate. Win32_Security is
|
|
# required because CreateJobObjectW takes a SECURITY_ATTRIBUTES parameter;
|
|
# Win32_System_Threading supplies IO_COUNTERS inside the extended-limit struct.
|
|
[target.'cfg(windows)'.dependencies]
|
|
windows-sys = { version = "0.61", features = ["Win32_Foundation", "Win32_Security", "Win32_System_JobObjects", "Win32_System_Threading"] }
|