[package]
edition = "2024"
rust-version = "1.91.1"
name = "moshpits"
version = "0.8.1"
authors = ["Jason Ozias <jason.g.ozias@gmail.com>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust implementation of in the same vein as Mosh, the mobile shell."
homepage = "https://github.com/rustyhorde/moshpit"
documentation = "https://docs.rs/libmoshpit"
readme = "README.md"
keywords = [
"ssh",
"mosh",
]
categories = [
"command-line-interface",
"network-programming",
"cryptography",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rustyhorde/moshpit"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
unstable = ["libmoshpit/unstable"]
[[bin]]
name = "mps"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0.102"
[dependencies.bytes]
version = "1.11.1"
[dependencies.clap]
version = "4.6.1"
features = ["derive"]
[dependencies.config]
version = "0.15.22"
features = ["toml"]
[dependencies.getset]
version = "0.1.6"
[dependencies.libmoshpit]
version = "0.8.1"
[dependencies.portable-pty]
version = "0.9.0"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.tokio]
version = "1.52.3"
features = [
"io-util",
"macros",
"net",
"rt-multi-thread",
"signal",
"sync",
"time",
]
[dependencies.tokio-util]
version = "0.7.18"
[dependencies.tracing]
version = "0.1.44"
features = [
"max_level_trace",
"release_max_level_trace",
]
[dependencies.tracing-subscriber-init]
version = "0.2.6"
features = ["tstime"]
[dependencies.uuid]
version = "1.23.1"
features = ["v4"]
[dependencies.vergen-pretty]
version = "10.0.0-beta.8"
features = [
"color",
"tracing",
"rkyv",
"serde",
]
[dependencies.vt100]
version = "0.16.2"
[dependencies.zstd]
version = "0.13.3"
[dev-dependencies.tokio]
version = "1.52.3"
features = [
"io-util",
"macros",
"net",
"rt-multi-thread",
"macros",
"rt",
"rt-multi-thread",
"test-util",
]
[build-dependencies.anyhow]
version = "1.0.102"
[build-dependencies.rustversion]
version = "1.0.22"
[build-dependencies.vergen-gix]
version = "10.0.0-beta.8"
features = [
"build",
"cargo",
"rustc",
"si",
]
[target."cfg(unix)".dependencies.libc]
version = "0.2.186"