From 172ccc910efdde65d8f03b57b88d9e2f4a4314f5 Mon Sep 17 00:00:00 2001 From: Jonathan Turner Date: Fri, 20 Dec 2019 06:01:42 +1300 Subject: [PATCH 1/2] Fix the stable plugins to correct list --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 4a91efc3..4b3fd35e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -136,7 +136,7 @@ semver = {version = "0.9.0", optional = true} [features] default = ["sys", "ps", "textview", "inc", "str"] -stable = ["sys", "ps", "starship-prompt", "textview", "binaryview", "match", "tree", "average", "sum"] +stable = ["sys", "ps", "textview", "inc", "str", "starship-prompt", "binaryview", "match", "tree", "average", "sum", "post", "fetch", "clipboard"] sys = ["heim", "battery"] ps = ["heim", "futures-timer"] From e336930fd86985bed75c6cc02ab69176947d3f59 Mon Sep 17 00:00:00 2001 From: Jonathan Turner Date: Fri, 20 Dec 2019 06:18:06 +1300 Subject: [PATCH 2/2] Update Cargo.toml --- Cargo.toml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4b3fd35e..b72e4b8f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -138,19 +138,23 @@ semver = {version = "0.9.0", optional = true} default = ["sys", "ps", "textview", "inc", "str"] stable = ["sys", "ps", "textview", "inc", "str", "starship-prompt", "binaryview", "match", "tree", "average", "sum", "post", "fetch", "clipboard"] +# Default sys = ["heim", "battery"] ps = ["heim", "futures-timer"] textview = ["crossterm", "syntect", "onig_sys", "url"] +inc = ["semver"] str = [] -inc = ["semver"] -starship-prompt = ["starship"] -binaryview = ["nu_plugin_binaryview"] -match = ["nu_plugin_match"] -tree = ["nu_plugin_tree"] +# Stable average = ["nu_plugin_average"] +binaryview = ["nu_plugin_binaryview"] +fetch = ["nu_plugin_fetch"] +match = ["nu_plugin_match"] +post = ["nu_plugin_post"] +starship-prompt = ["starship"] sum = ["nu_plugin_sum"] trace = ["nu-parser/trace"] +tree = ["nu_plugin_tree"] [dependencies.rusqlite] version = "0.20.0"