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"
|