You could print out the path where the executable is looking for the assets. For example.
use std::os;
fn main() {
let p = os::getcwd();
println!("{}", p.display());
}
Then, either change the path in the program to be the one you want, or move the assets to the path where it's looking.