afar 0.0.0

Operate shells from afar: line-mode terminal panes over local PTY or SSH for egui, rendered through egui-elegance's MultiTerminal.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.92"
name = "afar"
version = "0.0.0"
authors = ["Stephen Berry"]
build = false
exclude = [
    "dev/",
    "tests/snapshots/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Operate shells from afar: line-mode terminal panes over local PTY or SSH for egui, rendered through egui-elegance's MultiTerminal."
readme = "README.md"
keywords = [
    "egui",
    "terminal",
    "ssh",
    "pty",
    "elegance",
]
categories = [
    "gui",
    "command-line-interface",
    "network-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/stephenberry/afar"

[features]
default = [
    "local",
    "ssh",
]
local = ["dep:portable-pty"]
serde = ["dep:serde"]
ssh = ["dep:russh"]
ssh-insecure = []
ssh-openssl = ["russh?/openssl"]
ssh-password = []
tracing = ["dep:tracing"]

[lib]
name = "afar"
path = "src/lib.rs"

[[example]]
name = "fleet"
path = "examples/fleet.rs"
required-features = ["ssh"]

[[example]]
name = "local_shell"
path = "examples/local_shell.rs"
required-features = ["local"]

[[example]]
name = "ssh_session"
path = "examples/ssh_session.rs"
required-features = ["ssh"]

[[test]]
name = "ansi"
path = "tests/ansi.rs"

[[test]]
name = "ssh_mock"
path = "tests/ssh_mock.rs"

[dependencies.bytes]
version = "1"

[dependencies.egui]
version = "0.34"

[dependencies.egui-elegance]
version = "0.4"

[dependencies.portable-pty]
version = "0.8"
optional = true

[dependencies.russh]
version = "0.45"
features = ["flate2"]
optional = true
default-features = false

[dependencies.serde]
version = "1"
features = ["derive"]
optional = true

[dependencies.tokio]
version = "1"
features = [
    "rt-multi-thread",
    "sync",
    "io-util",
    "macros",
    "net",
    "time",
]

[dependencies.tracing]
version = "0.1"
optional = true

[dependencies.vte]
version = "0.13"

[dev-dependencies.eframe]
version = "0.34"
features = [
    "default_fonts",
    "glow",
    "wayland",
    "x11",
]
default-features = false

[dev-dependencies.tokio]
version = "1"
features = [
    "rt-multi-thread",
    "sync",
    "io-util",
    "macros",
    "test-util",
]