lib25519-sys 0.1.1

Rust Bindings for lib25519
Documentation
1
2
3
4
5
6
7
8
9
10
/// If needed, replace with the directory where
/// [lib25519](https://lib25519.cr.yp.to/install.html)
/// is installed on your system
const LIB25519_LOCATION: &str = "/usr/local/lib";

/// Build script which links the pre-installed lib25519 library your Rust binary
fn main() {
    println!("cargo:rustc-link-search={}", LIB25519_LOCATION);
    println!("cargo:rustc-link-lib=25519");
}