[package]
edition = "2021"
name = "psmux"
version = "0.3.5"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Terminal multiplexer for Windows - tmux alternative for PowerShell and Windows Terminal"
readme = "README.md"
keywords = [
"terminal",
"multiplexer",
"tmux",
"windows",
"powershell",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/marlocarlo/psmux"
[[bin]]
name = "pmux"
path = "src/main.rs"
[[bin]]
name = "psmux"
path = "src/main.rs"
[[bin]]
name = "tmux"
path = "src/main.rs"
[[example]]
name = "latency_harness"
path = "examples/latency_harness.rs"
[[test]]
name = "test_vt100_mouse"
path = "tests/test_vt100_mouse.rs"
[dependencies.chrono]
version = "0.4"
[dependencies.crossterm]
version = "0.28"
[dependencies.glob]
version = "0.3"
[dependencies.portable-pty]
version = "0.2"
[dependencies.ratatui]
version = "0.26"
[dependencies.regex]
version = "1"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.unicode-width]
version = "0.1"
[dependencies.vt100]
version = "0.16"
[dependencies.which]
version = "6"
[target."cfg(not(windows))".dependencies]
[target."cfg(windows)".dependencies.windows-sys]
version = "0.59"
features = [
"Win32_Foundation",
"Win32_System_Memory",
"Win32_System_DataExchange",
]
[profile.release]
opt-level = 3
lto = true
codegen-units = 1