chore(rust): 1.51 is now the minimum-supported compiler

This commit is contained in:
Michael Aaron Murphy 2021-08-19 20:22:42 +02:00
parent 21ced33d7d
commit c26c05f52e
3 changed files with 3 additions and 10 deletions

5
Cargo.lock generated
View file

@ -791,9 +791,9 @@ dependencies = [
[[package]]
name = "pollster"
version = "0.2.3"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6cce106fd2646acbe31a0e4006f75779d535c26a44f153ada196e9edcfc6d944"
checksum = "bb20dcc30536a1508e75d47dd0e399bb2fe7354dcf35cda9127f2bf1ed92e30e"
[[package]]
name = "pop-launcher"
@ -859,7 +859,6 @@ dependencies = [
"futures_codec",
"gen-z",
"num_cpus",
"pollster",
"pop-launcher",
"postage",
"regex",

View file

@ -1,6 +1,6 @@
# Pop Launcher
![](https://img.shields.io/badge/rustc-1.47-orange)
![](https://img.shields.io/badge/rustc-1.51-orange)
Modular IPC-based desktop launcher service, written in Rust. Desktop launchers may interface with this service via spawning the pop-launcher process and communicating to it via JSON IPC over the stdin and stdout pipes. The launcher service will also spawn plugins found in plugin directories on demand, based on the queries sent to the service.

View file

@ -27,9 +27,3 @@ strsim = "0.10"
toml = "0.5"
tracing = "0.1"
tracing-subscriber = { version = "0.2", features = ["fmt"] }
# Required for rustc 1.47
pollster = "=0.2.3"