tamer: Remove int_log feature flag (stabalized in 1.68-nightly)

This also bumps the minimum nightly version.
main
Mike Gerwitz 2022-12-15 13:32:14 -05:00
parent 7d86fdd97d
commit c71f3247b1
2 changed files with 1 additions and 6 deletions

View File

@ -56,7 +56,7 @@ test -n "$CARGO" || AC_MSG_ERROR([cargo not found])
AC_SUBST([CARGO_FLAGS], "--frozen --offline")
# This is a nightly version at the time of writing
rustc_ver_req=1.65
rustc_ver_req=1.68
AC_CHECK_PROGS(RUSTC, [rustc])
AC_MSG_CHECKING([rustc $RUST_TC version >= $rustc_ver_req])

View File

@ -62,11 +62,6 @@
// Convenience features that are easily replaced if not stabalized.
#![feature(nonzero_min_max)]
#![feature(nonzero_ops)]
// Note: this is the first time TAMER was hit by a change in an unstable
// feature,
// when `log10` et al. were renamed to `ilog10` et al:
// <https://github.com/rust-lang/rust/pull/100332>
#![feature(int_log)]
// Enabled for qualified paths in `matches!`.
#![feature(more_qualified_paths)]
// Used for const params like `&'static str` in `crate::fmt`.