crabterm 0.1.0

A terminal (UART) server and client
# 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 = "crabterm"
version = "0.1.0"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A terminal (UART) server and client"
readme = "README.md"
keywords = [
    "serial",
    "uart",
    "terminal",
    "tcp",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/allannielsen/crabterm"

[[bin]]
name = "crabterm"
path = "src/main.rs"

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

[dependencies.chrono]
version = "0.4"

[dependencies.clap]
version = "4.5.48"
features = ["wrap_help"]

[dependencies.dirs]
version = "6.0"

[dependencies.flexi_logger]
version = "0.31"

[dependencies.log]
version = "0.4"

[dependencies.mio]
version = "1.0"
features = [
    "os-ext",
    "net",
]

[dependencies.mio-serial]
version = "5.0.6"

[dependencies.signal-hook]
version = "0.3"

[dependencies.signal-hook-mio]
version = "0.2"
features = ["support-v1_0"]

[dependencies.termios]
version = "0.3.3"

[dev-dependencies.serial_test]
version = "3"

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