-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
34 lines (30 loc) · 985 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
33
[package]
name = "tcp-console"
version = "0.2.1"
edition = "2021"
authors = [
"Victor Ermolaev <[email protected]>",
]
repository = "https://github.com/vnermolaev/tcp-console"
documentation = "https://docs.rs/tcp-console/"
license = "MIT OR Apache-2.0"
keywords = ["tcp", "console"]
categories = ["network-programming", "command-line-utilities"]
description = "A TCP console to send command to running applications"
readme = "README.md"
[[example]]
name = "console"
path = "examples/console.rs"
[dependencies]
async-trait = "0.1.83"
bytes = { version = "1.9.0", features = ["serde"] }
thiserror = "2.0.3"
tokio = { version = "1.41.1", features = ["full"] }
tokio-util = { version = "0.7.12", features = ["codec"] }
futures-util = { version = "0.3.31", features = ["sink"] }
tracing = "0.1.41"
bcs = "0.1.6"
serde = { version = "1.0.215", features = ["derive"] }
anyhow = "1.0.93"
[dev-dependencies]
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }