[package]
name = "popup-mcp"
version = "0.1.0"
description = "A Tauri App"
authors = ["you"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
# The `_lib` suffix may seem redundant but it is necessary
# to make the lib name unique and wouldn't conflict with the bin name.
# This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519
name = "popup_mcp_lib"
crate-type = ["staticlib", "cdylib", "rlib"]
[build-dependencies]
tauri-build = { version = "2", features = [] }
[dependencies]
schemars = { version = "1", features = ["derive"] }
tauri = { version = "2", features = ["macos-private-api"] }
tauri-plugin-opener = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# rmcp: Rust MCP SDK,用于实现 MCP server 与工具调用
rmcp = { version = "0.8.5", features = ["server", "transport-io"] }
# tokio: 异步运行时,用于 rmcp server 与内部异步通信
tokio = { version = "1", features = ["rt-multi-thread", "macros", "time"] }
indexmap = { version = "2", features = ["serde"] }
time = { version = "0.3", features = ["formatting", "local-offset"] }