-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (31 loc) · 982 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "logged_tcp_proxy"
version = "0.1.2"
edition = "2021"
authors = ["Alexandr Garbuzov <[email protected]>"]
description = "Command line interface for proxying TCP connections with payload output into console which can be formatted different ways."
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"
homepage = "https://github.com/qwerty541/logged-tcp-proxy"
readme = "README.md"
rust-version = "1.74.1"
exclude = [".github", ".vscode", ".gitignore"]
[dependencies]
bytes = "1.9.0"
clap = { version = "4.5.23", features = ["std", "derive"] }
env_logger = "0.11.6"
logged-stream = "0.4.0"
log = "0.4.22"
tokio = { version = "1.42.0", features = [
"io-util",
"macros",
"net",
"rt-multi-thread",
"time"
], default-features = false }