Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion linux/build
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ fi
rustc_version="$(rustc --version)"
semver=( ${rustc_version//./ } )
version="${semver[1]}.${semver[2]}.${semver[3]}"
MSRV="1.54.0"
MSRV="1.87.0"
if [ "$(printf '%s\n' "$MSRV" "$version" | sort -V | head -n1)" = "$MSRV" ]; then
echo "rustc >= MSRV(${MSRV})"
else
Expand Down
2 changes: 1 addition & 1 deletion linux/configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ if test "x$with_rust" = "xyes" ; then
AS_IF([test "$RUSTC" = "notfound"], [AC_MSG_ERROR([rustc is required])])

rustc_version=$(rustc --version)
MSRV="1.54.0"
MSRV="1.87.0"
AX_COMPARE_VERSION($rustc_version, [ge], [$MSRV],
[AC_MSG_RESULT(rustc >= $MSRV)],
[AC_MSG_ERROR([Minimum supported rust version(MSRV) is $MSRV, please upgrade rust])])
Expand Down
4 changes: 2 additions & 2 deletions mac/build.command
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ fi
rustc_version="$(rustc --version)"
semver=( ${rustc_version//./ } )
version="${semver[1]}.${semver[2]}.${semver[3]}"
MSRV="1.54.0"
MSRV="1.87.0"
if [ "$(printf '%s\n' "$MSRV" "$version" | sort -V | head -n1)" = "$MSRV" ]; then
echo "rustc >= MSRV(${MSRV})"
else
Expand Down Expand Up @@ -268,4 +268,4 @@ if [[ "$out" != "" ]]; then
echo "Compilation successful, compiler message shown in previous lines"
else
echo "Compilation successful, no compiler messages."
fi
fi
2 changes: 1 addition & 1 deletion mac/configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ if test "x$with_rust" = "xyes" ; then
AS_IF([test "$RUSTC" = "notfound"], [AC_MSG_ERROR([rustc is required])])

rustc_version=$(rustc --version)
MSRV="1.54.0"
MSRV="1.87.0"
AX_COMPARE_VERSION($rustc_version, [ge], [$MSRV],
[AC_MSG_RESULT(rustc >= $MSRV)],
[AC_MSG_ERROR([Minimum supported rust version(MSRV) is $MSRV, please upgrade rust])])
Expand Down
2 changes: 1 addition & 1 deletion src/rust/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ else()
endif()

# Check rust version
set(MSRV "1.54.0")
set(MSRV "1.87.0")
if(Rust_VERSION VERSION_GREATER_EQUAL ${MSRV})
message(STATUS "rustc >= MSRV(${MSRV})")
else()
Expand Down
1 change: 1 addition & 0 deletions src/rust/clippy.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
msrv = "1.87.0"
Loading