sshui 0.2.0

A rust lib to make a customizable user-interface over SSH with Ratatui
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 = "2024"
name = "sshui"
version = "0.2.0"
authors = ["Kubik <kubik@openvoxel.studio>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A rust lib to make a customizable user-interface over SSH with Ratatui"
readme = "README.md"
keywords = [
    "ssh",
    "ratatui",
    "tui",
    "ui-over-ssh",
]
categories = [
    "command-line-interface",
    "network-programming",
]
license = "MIT"
repository = "https://github.com/KodeurKubik/SSHUI"
resolver = "2"

[features]
keyring = [
    "dep:serde",
    "dep:serde_json",
    "dep:keyring",
]

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

[dependencies.anyhow]
version = "1"

[dependencies.async-trait]
version = "0.1"

[dependencies.keyring]
version = "3"
features = [
    "apple-native",
    "windows-native",
    "linux-native",
    "sync-secret-service",
]
optional = true

[dependencies.ratatui]
version = "0.30"

[dependencies.russh]
version = "0.55"

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

[dependencies.serde_json]
version = "1"
optional = true

[dependencies.termwiz]
version = "0.23"

[dependencies.tokio]
version = "1"
features = ["full"]

[dependencies.unicode-width]
version = "0.2"

[profile.release]
opt-level = "s"
lto = true
codegen-units = 1
panic = "abort"
strip = true

[profile.release.package."*"]
opt-level = 3