[package] name = "app" version = "0.1.0" description = "A Tauri App" authors = ["you"] license = "" repository = "" edition = "2021" rust-version = "1.77.2" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] name = "app_lib" crate-type = ["staticlib", "cdylib", "rlib"] [build-dependencies] tauri-build = { version = "2.0.2", features = [] } [dependencies] serde_json = "1.0" serde = { version = "1.0", features = ["derive"] } log = "0.4" tauri = { version = "2.1.0", features = [ "protocol-asset", "macos-private-api", "test", ] } tauri-plugin-log = "2.0.0-rc" tauri-plugin-shell = "2.2.0" flate2 = "1.0" tar = "0.4" rand = "0.8" tauri-plugin-http = { version = "2", features = ["unsafe-headers"] } tauri-plugin-store = "2" hyper = { version = "0.14", features = ["server"] } reqwest = { version = "0.11", features = ["json", "blocking"] } tokio = { version = "1", features = ["full"] } rmcp = { git = "https://github.com/modelcontextprotocol/rust-sdk", branch = "main", features = [ "client", "transport-sse", "transport-child-process", "tower", ] } uuid = { version = "1.7", features = ["v4"] } env = "1.0.1" [target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies] tauri-plugin-updater = "2" once_cell = "1.18"