[package]
edition = "2021"
name = "rmux-server"
version = "0.5.0"
build = "build.rs"
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"
[features]
default = ["web"]
fuzzing = []
web = [
"dep:base64",
"dep:getrandom",
"dep:hkdf",
"dep:httparse",
"dep:rmux-web-crypto",
"dep:serde",
"dep:serde_json",
"dep:sha1",
"dep:sha2",
"dep:subtle",
"dep:toml",
"dep:zeroize",
]
[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 = "status_windows"
path = "tests/status_windows.rs"
[[test]]
name = "window_management"
path = "tests/window_management.rs"
[dependencies.async-recursion]
version = "=1.1.1"
[dependencies.base64]
version = "0.22"
optional = true
[dependencies.chrono]
version = "0.4.42"
features = [
"clock",
"std",
]
default-features = false
[dependencies.getrandom]
version = "0.3"
optional = true
[dependencies.glob]
version = "0.3"
[dependencies.hkdf]
version = "0.12"
optional = true
[dependencies.httparse]
version = "1.9"
optional = true
[dependencies.regex]
version = "1.12.2"
[dependencies.rmux-core]
version = "0.5.0"
[dependencies.rmux-ipc]
version = "0.5.0"
[dependencies.rmux-os]
version = "0.5.0"
[dependencies.rmux-proto]
version = "0.5.0"
[dependencies.rmux-pty]
version = "0.5.0"
[dependencies.rmux-web-crypto]
version = "0.5.0"
optional = true
[dependencies.serde]
version = "1"
features = ["derive"]
optional = true
[dependencies.serde_json]
version = "1"
optional = true
[dependencies.sha1]
version = "0.10"
optional = true
[dependencies.sha2]
version = "0.10"
optional = true
[dependencies.subtle]
version = "2.6"
optional = true
[dependencies.tokio]
version = "1.48.0"
features = [
"io-util",
"macros",
"net",
"process",
"rt",
"sync",
"time",
]
[dependencies.toml]
version = "0.8"
optional = true
[dependencies.tracing]
version = "0.1"
[dependencies.zeroize]
version = "1"
optional = true
default-features = false
[dev-dependencies.rustix]
version = "1.1.4"
features = [
"event",
"fs",
"termios",
]
[target."cfg(unix)".dependencies.rustix]
version = "1.1.4"
features = [
"event",
"fs",
"net",
"process",
]
[target."cfg(unix)".dependencies.signal-hook]
version = "0.3.18"