Skip to content

Commit

Permalink
fix(Binaries): Use correct crate name
Browse files Browse the repository at this point in the history
  • Loading branch information
nokome committed Dec 8, 2021
1 parent 8a5ec67 commit 8cc3590
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rust/binaries/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ static BINARIES: Lazy<BTreeMap<String, Box<dyn BinaryTrait>>> = Lazy::new(|| {
binary_new!("binary-node", binary_node::NodeBinary {});
binary_new!("binary-pandoc", binary_pandoc::PandocBinary {});
binary_new!("binary-python", binary_python::PythonBinary {});
binary_new!("binary-rscript", binary_r::RscriptBinary {});
binary_new!("binary-rscript", binary_rscript::RscriptBinary {});

map
});
Expand Down

0 comments on commit 8cc3590

Please sign in to comment.