I ran into some issues while trying to use the Rust bindings and eventually realized that the Unicorn build directory used in the top-level Makefile didn't match the paths used in bindings/rust/build.rs.
This PR updates the Unicorn build path in Makefile to use build/unicorn so that it's created in the location where build.rs expects it to be. Another minor change was also made to bindings/rust/src/lib.rs to remove warnings about globbed re-exported symbols.
I ran into some issues while trying to use the Rust bindings and eventually realized that the Unicorn build directory used in the top-level Makefile didn't match the paths used in
bindings/rust/build.rs
.This PR updates the Unicorn build path in
Makefile
to usebuild/unicorn
so that it's created in the location wherebuild.rs
expects it to be. Another minor change was also made tobindings/rust/src/lib.rs
to remove warnings about globbed re-exported symbols.