From 7dce6b988d015497447010c40b974647254ba161 Mon Sep 17 00:00:00 2001 From: Henrik Friedrichsen Date: Sun, 12 Mar 2023 16:33:23 +0100 Subject: [PATCH] Fix: disable ncspot default features for xtask Pulling in ncspot without disabling default features includes a lot of unnecessary dependencies, i.e. audio backends including dynamic linkage to `libpulse`. As it's not required for `xtask` we should disable default features, resulting in a much smaller binary. --- xtask/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml index 9142a83..9682969 100644 --- a/xtask/Cargo.toml +++ b/xtask/Cargo.toml @@ -11,4 +11,5 @@ clap_complete = "4.1.4" clap = "4.1.6" [dependencies.ncspot] +default-features = false path = ".."