[package]
edition = "2024"
rust-version = "1.85.1"
name = "logged_tcp_proxy"
version = "0.2.0"
authors = ["Alexandr Garbuzov <qwerty541zxc@gmail.com>"]
build = false
include = [
"src/**/*",
"Cargo.*",
"CHANGELOG.md",
"LICENSE-*",
"README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command line interface for proxying TCP connections with payload output into console which can be formatted different ways."
homepage = "https://github.com/qwerty541/logged-tcp-proxy"
documentation = "https://docs.rs/logged_tcp_proxy"
readme = "README.md"
keywords = [
"network",
"tcp",
"proxy",
"logging",
"debugging",
]
categories = [
"command-line-utilities",
"development-tools::debugging",
"network-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/qwerty541/logged-tcp-proxy"
[[bin]]
name = "logged_tcp_proxy"
path = "src/main.rs"
[dependencies.bytes]
version = "1.11.1"
[dependencies.clap]
version = "4.6.1"
features = [
"std",
"derive",
]
[dependencies.env_logger]
version = "0.11.10"
[dependencies.log]
version = "0.4.32"
[dependencies.logged-stream]
version = "0.6.0"
[dependencies.tokio]
version = "1.52.3"
features = [
"io-util",
"macros",
"net",
"rt-multi-thread",
"signal",
"sync",
"time",
]
default-features = false
[dev-dependencies.tiny_http]
version = "0.12.0"
[dev-dependencies.tokio-modbus]
version = "0.17.0"
features = [
"tcp",
"tcp-server",
]
default-features = false