Skip to content

Commit

Permalink
fix(Rscript binary): Update crate name
Browse files Browse the repository at this point in the history
  • Loading branch information
nokome committed Dec 8, 2021
1 parent 7a6c4f5 commit 3f41131
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion rust/binaries/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ binary-chromium = { path = "../binary-chromium", version = "0.0.0", optional = t
binary-node = { path = "../binary-node", version = "0.0.0", optional = true }
binary-pandoc = { path = "../binary-pandoc", version = "0.0.0", optional = true }
binary-python = { path = "../binary-python", version = "0.0.0", optional = true }
binary-r = { path = "../binary-r", version = "0.0.0", optional = true }
binary-rscript = { path = "../binary-rscript", version = "0.0.0", optional = true }

[dev-dependencies]
test-utils = { path = "../test-utils", version = "0.0.0" }
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-r", binary_r::RBinary {});
binary_new!("binary-rscript", binary_r::RscriptBinary {});

map
});
Expand Down
2 changes: 1 addition & 1 deletion rust/stencila/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ default = [
"binaries/binary-node",
"binaries/binary-pandoc",
"binaries/binary-python",
"binaries/binary-r",
"binaries/binary-rscript",

"serve",
"serve-stdio",
Expand Down

0 comments on commit 3f41131

Please sign in to comment.