HarmonyLink/Cargo.toml
Jordon Brooks 5da0c7f397 Updated DLL
Fixed DLL loading issues with Linux
2023-06-04 00:41:26 +01:00

20 lines
No EOL
552 B
TOML

[package]
name = "harmony_link_client"
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
[[bin]]
name = "harmony_link_client"
path = "src/main.rs"
[dependencies]
libloading = "0.8.0"