46 lines
1,013 B
TOML
46 lines
1,013 B
TOML
[package]
|
|
name = "tiletopia"
|
|
version = "0.2.3"
|
|
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"
|
|
|
|
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
|