[package]
edition = "2021"
name = "rmux-server"
version = "0.1.0"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Tokio daemon and request dispatcher for the RMUX terminal multiplexer."
readme = "README.md"
keywords = [
"terminal",
"multiplexer",
"daemon",
]
categories = ["command-line-interface"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/helvesec/rmux"
[lib]
name = "rmux_server"
path = "src/lib.rs"
[[test]]
name = "attach_session"
path = "tests/attach_session.rs"
[[test]]
name = "buffers"
path = "tests/buffers.rs"
[[test]]
name = "capture"
path = "tests/capture.rs"
[[test]]
name = "formats"
path = "tests/formats.rs"
[[test]]
name = "hooks"
path = "tests/hooks.rs"
[[test]]
name = "listing"
path = "tests/listing.rs"
[[test]]
name = "options_environment"
path = "tests/options_environment.rs"
[[test]]
name = "pane_management"
path = "tests/pane_management.rs"
[[test]]
name = "pane_transfer"
path = "tests/pane_transfer.rs"
[[test]]
name = "request_end_to_end"
path = "tests/request_end_to_end.rs"
[[test]]
name = "scripting"
path = "tests/scripting.rs"
[[test]]
name = "send_keys"
path = "tests/send_keys.rs"
[[test]]
name = "send_keys_windows"
path = "tests/send_keys_windows.rs"
[[test]]
name = "session_crud"
path = "tests/session_crud.rs"
[[test]]
name = "status"
path = "tests/status.rs"
[[test]]
name = "window_management"
path = "tests/window_management.rs"
[dependencies.async-recursion]
version = "=1.1.1"
[dependencies.chrono]
version = "0.4.42"
features = [
"clock",
"std",
]
default-features = false
[dependencies.glob]
version = "0.3"
[dependencies.regex]
version = "1.12.2"
[dependencies.rmux-core]
version = "0.1.0"
[dependencies.rmux-ipc]
version = "0.1.0"
[dependencies.rmux-os]
version = "0.1.0"
[dependencies.rmux-proto]
version = "0.1.0"
[dependencies.rmux-pty]
version = "0.1.0"
[dependencies.tokio]
version = "1.48.0"
features = [
"io-util",
"macros",
"net",
"process",
"rt",
"sync",
"time",
]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.rustix]
version = "1.1.4"
features = [
"event",
"fs",
"termios",
]
[target."cfg(unix)".dependencies.rustix]
version = "1.1.4"
features = [
"event",
"fs",
"net",
]