Initial Commit

This commit is contained in:
Jordon Brooks 2023-06-02 22:58:55 +01:00
parent afddf6b3e8
commit 54edd950eb
4 changed files with 80 additions and 0 deletions

16
Cargo.toml Normal file
View file

@ -0,0 +1,16 @@
[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"