diff options
| author | sneurlax <sneurlax@gmail.com> | 2024-10-11 18:28:39 -0500 |
|---|---|---|
| committer | sneurlax <sneurlax@gmail.com> | 2024-10-11 18:28:39 -0500 |
| commit | 2bdb7f95729461c3fba2e0ae6595b636df4ccbe6 (patch) | |
| tree | f63e0a64c3de31d5eda1dfe314a04e15976bd073 /impls/monero.rs/build.rs | |
| parent | 1e85affc00733189cf7462d921d75775269130a8 (diff) | |
support loading lib from /lib or same dir as bin
and resolve 2 clippy issues
need to test on other platforms gestured-towards here in lib.rs
Diffstat (limited to 'impls/monero.rs/build.rs')
| -rw-r--r-- | impls/monero.rs/build.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/impls/monero.rs/build.rs b/impls/monero.rs/build.rs index 59e87d9..357028b 100644 --- a/impls/monero.rs/build.rs +++ b/impls/monero.rs/build.rs @@ -40,6 +40,6 @@ fn main() { .join("src") .join("bindings.rs"); bindings - .write_to_file(&out_path) + .write_to_file(out_path) .expect("Couldn't write bindings!"); } |
