live-link-face/Cargo.toml
2024-06-06 20:41:39 -06:00

20 lines
580 B
TOML

[package]
name = "live-link-face"
version = "0.1.0"
authors = ["Klink"]
description = "Live Link Face packets encoder/decoder"
repository = "https://git.zhitno.st/klink/live-link-face"
keywords = ["unreal", "livelink", "face-tracking"]
edition = "2021"
[dependencies]
byteorder = "1.5.0"
log = "0.4.21"
[profile.release]
opt-level = 'z' # Optimize for size
lto = true # Enable link-time optimization
codegen-units = 1 # Reduce number of codegen units to increase optimizations
panic = 'abort' # Abort on panic
strip = true # Strip symbols from binary*