HarmonyLink/Cargo.toml
2023-06-02 22:58:55 +01:00

16 lines
492 B
TOML

[package]
name = "harmony_link_test"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
panic = "abort" # Strip expensive panic clean-up logic
codegen-units = 1 # Compile crates one after another so the compiler can optimize better
lto = true # Enables link to optimizations
opt-level = "z" # Optimize for binary size
strip = true # Remove debug symbols
[dependencies]
libloading = "0.8.0"