Skip to content

Commit

Permalink
Print rustc --version in configure as per CRAN request
Browse files Browse the repository at this point in the history
  • Loading branch information
jeroen committed Aug 24, 2024
1 parent d85d389 commit 43169af
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: hellorust
Type: Package
Title: Minimal Examples of Using Rust Code in R
Version: 1.2.0
Version: 1.2.1
Authors@R: c(person("Jeroen", "Ooms", role = c("aut", "cre"), email = "[email protected]",
comment = c(ORCID = "0000-0002-4035-0289")),
person("Authors of the dependency Rust crates", role = "aut", comment = "see AUTHORS file"))
Expand Down
3 changes: 3 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
1.2.1
- Print rustc --version in configure as per CRAN request

1.2.0
- Windows: support aarch64-pc-windows-gnullvm

Expand Down
1 change: 1 addition & 0 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
export PATH="$PATH:$HOME/.cargo/bin"
if [ $(command -v cargo) ]; then
cargo --version
rustc --version || true
else
echo "----------------------- [RUST NOT FOUND]---------------------------"
echo "The 'cargo' command was not found on the PATH. Please install rustc"
Expand Down

0 comments on commit 43169af

Please sign in to comment.