/// If needed, replace with the directory where
/// [lib25519](https://lib25519.cr.yp.to/install.html)
/// is installed on your system
constLIB25519_LOCATION:&str="/usr/local/lib";/// Build script which links the pre-installed lib25519 library your Rust binary
fnmain(){println!("cargo:rustc-link-search={}",LIB25519_LOCATION);println!("cargo:rustc-link-lib=25519");}