Newer
Older
ExoLauncher / src-tauri / Cargo.toml
[package]
name = "ExoLauncher"
version = "0.0.0"
description = "ExoLauncher HitL Gateway"
authors = ["Antigravity"]
edition = "2021"
build = "build.rs"

[features]
custom-protocol = ["tauri/custom-protocol"]

[build-dependencies]
tauri-build = { version = "1.5", features = [] }

[dependencies]
rust-mcp-sdk = { version = "0.9.0", features = ["server"] }
rust-mcp-transport = { version = "0.9.0", features = ["stdio"] }
tokio = { version = "1.0", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
rusqlite = { version = "0.31", features = ["bundled"] }
dotenvy = "0.15"
anyhow = "1.0"
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1.0", features = ["v4", "serde"] }
async-trait = "0.1"
axum = "0.7"
tower-http = { version = "0.5", features = ["cors"] }
reqwest = { version = "0.12", features = ["json"] }
futures-util = "0.3"
tauri = { version = "1.5", features = ["api-all", "custom-protocol"] }