From 312457eb74130ef30385bbf5a5bfe6e9ce8cd5fd Mon Sep 17 00:00:00 2001 From: Kyle Simpson Date: Sat, 2 Apr 2022 17:31:35 +0100 Subject: [PATCH] Chore: Pin flume version to prevent MSRV breakage. Flume's latest patch version requires toe new Rust 2021 edition, which is at odds with the current MSRV. This was tested using `cargo msrv` on the default feature set. --- Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 27a7e3112..ba0943f15 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -53,9 +53,10 @@ features = ["discord-full"] optional = true version = "0.4" +# Temporary hack to pin MSRV. [dependencies.flume] optional = true -version = "0.10" +version = "<0.10.12" [dependencies.futures] version = "0.3"