17 lines
398 B
TOML
17 lines
398 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 = { version = "0.10", default-features = false }
|
|
hexhex = { git = "https://git.comff.net/rustics/hexhex.git", tag = "v1.0" }
|
|
|
|
[profile.release]
|
|
lto = true
|
|
codegen-units = 1
|
|
debug = false
|
|
panic = "unwind"
|