mirror of
https://github.com/nushell/nushell
synced 2024-12-26 13:03:07 +00:00
Make futures-timer
a non-optional dependency (#1265)
Originally, it was only brought in with the `ps` feature enabled. However, commit #ba7a17, made the crate used in `src/commands/classified/external.rs` unconditionally, causing the build to fail when built without the `ps` feature. This commit fixes the problem by making it a non-optional dependency.
This commit is contained in:
parent
762c798670
commit
66bd331ba9
1 changed files with 2 additions and 2 deletions
|
@ -122,6 +122,7 @@ futures-util = "0.3.1"
|
||||||
termcolor = "1.1.0"
|
termcolor = "1.1.0"
|
||||||
natural = "0.3.0"
|
natural = "0.3.0"
|
||||||
parking_lot = "0.10.0"
|
parking_lot = "0.10.0"
|
||||||
|
futures-timer = "1.0.2"
|
||||||
|
|
||||||
clipboard = {version = "0.5", optional = true }
|
clipboard = {version = "0.5", optional = true }
|
||||||
ptree = {version = "0.2" }
|
ptree = {version = "0.2" }
|
||||||
|
@ -131,7 +132,6 @@ battery = {version = "0.7.5", optional = true}
|
||||||
syntect = {version = "3.2.0", optional = true }
|
syntect = {version = "3.2.0", optional = true }
|
||||||
onig_sys = {version = "=69.1.0", optional = true }
|
onig_sys = {version = "=69.1.0", optional = true }
|
||||||
crossterm = {version = "0.10.2", optional = true}
|
crossterm = {version = "0.10.2", optional = true}
|
||||||
futures-timer = {version = "1.0.2", optional = true}
|
|
||||||
url = {version = "2.1.1", optional = true}
|
url = {version = "2.1.1", optional = true}
|
||||||
semver = {version = "0.9.0", optional = true}
|
semver = {version = "0.9.0", optional = true}
|
||||||
|
|
||||||
|
@ -147,7 +147,7 @@ stable = ["default", "starship-prompt", "binaryview", "match", "tree", "average"
|
||||||
|
|
||||||
# Default
|
# Default
|
||||||
sys = ["heim", "battery"]
|
sys = ["heim", "battery"]
|
||||||
ps = ["heim", "futures-timer"]
|
ps = ["heim"]
|
||||||
textview = ["crossterm", "syntect", "onig_sys", "url"]
|
textview = ["crossterm", "syntect", "onig_sys", "url"]
|
||||||
inc = ["nu_plugin_inc"]
|
inc = ["nu_plugin_inc"]
|
||||||
str = ["nu_plugin_str"]
|
str = ["nu_plugin_str"]
|
||||||
|
|
Loading…
Reference in a new issue