mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-04-24 06:39:58 -07:00
19 lines
444 B
TOML
19 lines
444 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
|
|
build = "build.rs"
|
|
|
|
[dependencies]
|
|
axum = { workspace = true }
|
|
brk_interface = { workspace = true }
|
|
log = { workspace = true }
|
|
brk_rmcp = { version = "0.5.0", features = [
|
|
"transport-worker",
|
|
"transport-streamable-http-server",
|
|
] }
|