Skip to content
Merged
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 .github/workflows/rust-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
matrix:
rust:
# MSRV; most not be higher than the clippy rust version in checks.yml
- "1.47"
- "1.52"
- "stable"
os:
- ubuntu-latest
Expand Down
3 changes: 1 addition & 2 deletions rust/lib/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// Not compatible with the MSRV
// #![warn(unsafe_op_in_unsafe_fn)]
#![warn(unsafe_op_in_unsafe_fn)]
#![allow(unused_unsafe)]
// Not working yet in stable - https://github.com/rust-lang/rust-clippy/issues/8020
// #![warn(clippy::undocumented_unsafe_blocks)]
Expand Down
4 changes: 2 additions & 2 deletions rust/taskchampion/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ Users can define their own server impelementations.
See the [TaskChampion Book](http://taskchampion.github.com/taskchampion)
for more information about the design and usage of the tool.

# Minimum Supported Rust Version
# Minimum Supported Rust Version (MSRV)

This crate supports Rust version 1.47 and higher.
This crate supports Rust version 1.52 and higher.

*/

Expand Down