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.
This commit is contained in:
Kyle Simpson
2022-04-02 17:31:35 +01:00
parent 05c6762228
commit 312457eb74

View File

@@ -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"