20 lines
553 B
TOML
20 lines
553 B
TOML
[package]
|
|
name = "harmony_link_server"
|
|
version = "1.0.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_server"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
libloading = "0.8.0"
|