63 lines
1.5 KiB
TOML
63 lines
1.5 KiB
TOML
[package]
|
|
name = "tiletopia"
|
|
version = "0.4.1"
|
|
description = "Tiling multi-terminal manager for WSL"
|
|
authors = ["megaproxy"]
|
|
edition = "2021"
|
|
rust-version = "1.77"
|
|
|
|
[lib]
|
|
name = "tiletopia_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = [] }
|
|
tauri-plugin-clipboard-manager = "2"
|
|
tauri-plugin-opener = "2"
|
|
|
|
# Saved-credential storage (Windows Credential Manager / DPAPI).
|
|
keyring-core = "1"
|
|
windows-native-keyring-store = "1"
|
|
|
|
# Embedded MCP server: lets a Claude session drive the workspace
|
|
# (list panes, read scrollback, etc.). Streamable HTTP transport mounted
|
|
# on an Axum router so we can add a bearer-auth middleware in front.
|
|
rmcp = { version = "=1.7.0", features = [
|
|
"server",
|
|
"macros",
|
|
"schemars",
|
|
"transport-streamable-http-server",
|
|
] }
|
|
schemars = "1"
|
|
axum = { version = "0.8", default-features = false, features = ["http1", "tokio"] }
|
|
tower = "0.5"
|
|
tokio-util = { version = "0.7", features = ["rt"] }
|
|
rand = "0.9"
|
|
hex = "0.4"
|
|
regex = "1"
|
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
|
|
portable-pty = "0.8"
|
|
anyhow = "1"
|
|
tokio = { version = "1", features = ["full"] }
|
|
once_cell = "1"
|
|
parking_lot = "0.12"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
base64 = "0.22"
|
|
|
|
[features]
|
|
default = ["custom-protocol"]
|
|
custom-protocol = ["tauri/custom-protocol"]
|
|
|
|
[profile.release]
|
|
panic = "abort"
|
|
codegen-units = 1
|
|
lto = true
|
|
opt-level = "s"
|
|
strip = true
|