[package]
edition = "2021"
rust-version = "1.70"
name = "ezpn"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Dead simple terminal pane splitting — ezpn 2 3 gives you a 2x3 grid of shells"
homepage = "https://github.com/subinium/ezpn"
readme = "README.md"
keywords = [
"terminal",
"pane",
"multiplexer",
"tui",
"cli",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/subinium/ezpn"
[[bin]]
name = "ezpn"
path = "src/main.rs"
[[bin]]
name = "ezpn-ctl"
path = "src/bin/ezpn-ctl.rs"
[dependencies.anyhow]
version = "1"
[dependencies.crossterm]
version = "0.28"
[dependencies.portable-pty]
version = "0.8"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.toml]
version = "0.8"
[dependencies.vt100]
version = "0.15"
[target."cfg(unix)".dependencies.libc]
version = "0.2"