ddidderr
59a009594f
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.
17 lines
296 B
TOML
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"
|