Switch to rawkey reader. Add more binary reading

This commit is contained in:
Jonathan Turner
2019-07-05 10:17:18 +12:00
parent 5e779d8b2b
commit 73d87e57ab
7 changed files with 564 additions and 52 deletions

View File

@ -137,6 +137,13 @@ fn load_plugins(context: &mut Context) -> Result<(), ShellError> {
let _ = load_plugins_in_dir(&path, context);
// Also use our release output for now
let mut path = std::path::PathBuf::from(".");
path.push("target");
path.push("release");
let _ = load_plugins_in_dir(&path, context);
Ok(())
}