[package] name = "tiletopia" version = "0.2.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 = [] } 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