udp-hexdump-example/Cargo.toml
ddidderr 59a009594f
UDP server hexdump to console example
Just a small UDP server which listen in its own thread and sends the
messages it receives via a flume unbounded channel to the main thread
which prints the received message as a hexdump to the console.
2022-04-06 19:54:30 +02:00

17 lines
296 B
TOML

[package]
name = "udp-hexdump-example"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
flume = "0.10"
hexyl = "0.9"
[profile.release]
lto = true
codegen-units = 1
debug = false
panic = "unwind"