From c26c05f52eb5cd595fd79c2d619ade93052046d0 Mon Sep 17 00:00:00 2001 From: Michael Aaron Murphy Date: Thu, 19 Aug 2021 20:22:42 +0200 Subject: [PATCH] chore(rust): 1.51 is now the minimum-supported compiler --- Cargo.lock | 5 ++--- README.md | 2 +- service/Cargo.toml | 6 ------ 3 files changed, 3 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ad983da..9c614af 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/README.md b/README.md index ef72b7d..afe9d68 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/service/Cargo.toml b/service/Cargo.toml index 4c5b55f..3d53720 100644 --- a/service/Cargo.toml +++ b/service/Cargo.toml @@ -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" - - -