[package]
edition = "2021"
name = "rmux-client"
version = "0.1.1"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Blocking local client and attach-mode plumbing for the RMUX terminal multiplexer."
readme = "README.md"
keywords = [
"terminal",
"multiplexer",
"client",
]
categories = ["command-line-interface"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/helvesec/rmux"
[lib]
name = "rmux_client"
path = "src/lib.rs"
[[test]]
name = "attach_session"
path = "tests/attach_session.rs"
[[test]]
name = "pane_transfer"
path = "tests/pane_transfer.rs"
[[test]]
name = "raw_terminal"
path = "tests/raw_terminal.rs"
[[test]]
name = "session_lifecycle"
path = "tests/session_lifecycle.rs"
[[test]]
name = "window_lifecycle"
path = "tests/window_lifecycle.rs"
[dependencies.rmux-core]
version = "0.1.1"
[dependencies.rmux-ipc]
version = "0.1.0"
[dependencies.rmux-proto]
version = "0.1.0"
[dev-dependencies.rmux-pty]
version = "0.1.0"
[dev-dependencies.rmux-server]
version = "0.1.1"
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"net",
"time",
]
[target."cfg(unix)".dependencies.libc]
version = "0.2.185"
[target."cfg(unix)".dependencies.rmux-sdk]
version = "0.1.0"
[target."cfg(unix)".dependencies.rustix]
version = "1.1.4"
features = [
"event",
"net",
"process",
"runtime",
"termios",
"thread",
]
[target."cfg(unix)".dependencies.signal-hook]
version = "0.3.18"
[target."cfg(unix)".dependencies.tokio]
version = "1.48.0"
features = [
"net",
"rt",
"time",
]
[target."cfg(windows)".dependencies.rmux-sdk]
version = "0.1.0"
[target."cfg(windows)".dependencies.tokio]
version = "1.48.0"
features = [
"io-util",
"macros",
"rt",
"sync",
"time",
]
[target."cfg(windows)".dependencies.windows-sys]
version = "0.61.2"
features = [
"Win32_Foundation",
"Win32_Storage_FileSystem",
"Win32_System_Console",
"Win32_System_Pipes",
"Win32_System_Threading",
]