sparse/Cargo.toml
Andrew Rioux 8ad7127d4d
feat: added the beginnings of sparse-protocol
sparse protocol allows for composing of different "protocols" at
runtime, and will allow for DNS and TCP as well as different TCP
protocols like HTTP
2023-05-09 10:34:03 -04:00

15 lines
188 B
TOML

[workspace]
members = [
"pcap-sys", "nl-sys",
"examples/*/*",
"sparse-protocol"
]
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"