[package]
edition = "2024"
rust-version = "1.91.1"
name = "moshpit"
version = "0.2.0"
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 = []
[[bin]]
name = "mp"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0.102"
[dependencies.clap]
version = "4.6.1"
features = ["derive"]
[dependencies.config]
version = "0.15.22"
features = ["toml"]
[dependencies.crossterm]
version = "0.29.0"
[dependencies.dialoguer]
version = "0.12.0"
[dependencies.dirs2]
version = "3.0.1"
[dependencies.getset]
version = "0.1.6"
[dependencies.libmoshpit]
version = "0.2.0"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.terminal_size]
version = "0.4.4"
[dependencies.tokio]
version = "1.52.1"
features = [
"io-util",
"macros",
"net",
"rt-multi-thread",
"io-std",
"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",
]
[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",
]