mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-05-03 02:50:00 -07:00
20 lines
474 B
TOML
20 lines
474 B
TOML
[package]
|
|
name = "brk_mcp"
|
|
description = "A bridge for LLMs to access BRK"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
build = "build.rs"
|
|
|
|
[dependencies]
|
|
axum = { workspace = true }
|
|
brk_interface = { workspace = true }
|
|
log = { workspace = true }
|
|
brk_rmcp = { version = "0.6.0", features = [
|
|
"transport-worker",
|
|
"transport-streamable-http-server",
|
|
] }
|