From 7850ae0321035d13abb21474f9254b89f86eef99 Mon Sep 17 00:00:00 2001 From: surtur Date: Sat, 16 Apr 2022 17:27:37 +0200 Subject: [PATCH] cargo config: enable future-incompat-report --- .cargo/config.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.cargo/config.toml b/.cargo/config.toml index 1b216cc..078304d 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -2,3 +2,6 @@ jobs = 2 # number of parallel jobs, defaults to # of CPUs rustc = ".cargo/bin/rustc" # the rust compiler tool rustc-wrapper = ".cargo/bin/sccache" # enable sccache + +[future-incompat-report] +frequency = 'always' # when to display a notification about a future incompat report