live-link-face/Cargo.toml

19 lines
565 B
TOML
Raw Normal View History

2024-02-20 18:08:40 -06:00
[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"
[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*