mirror of
https://github.com/nushell/nushell.git
synced 2024-11-25 18:03:51 +01:00
Simplify the default feature list (#3288)
This commit is contained in:
parent
0b5e131410
commit
41390cd963
11
Cargo.toml
11
Cargo.toml
@ -92,14 +92,10 @@ default = [
|
|||||||
"nu-cli/shadow-rs",
|
"nu-cli/shadow-rs",
|
||||||
"sys",
|
"sys",
|
||||||
"ps",
|
"ps",
|
||||||
"textview",
|
|
||||||
"inc",
|
|
||||||
"directories-support",
|
"directories-support",
|
||||||
"ctrlc-support",
|
"ctrlc-support",
|
||||||
"which-support",
|
"which-support",
|
||||||
"ptree-support",
|
|
||||||
"term-support",
|
"term-support",
|
||||||
"uuid-support",
|
|
||||||
"rustyline-support",
|
"rustyline-support",
|
||||||
"match",
|
"match",
|
||||||
"post",
|
"post",
|
||||||
@ -111,9 +107,13 @@ stable = ["default"]
|
|||||||
extra = [
|
extra = [
|
||||||
"default",
|
"default",
|
||||||
"binaryview",
|
"binaryview",
|
||||||
|
"inc",
|
||||||
"tree",
|
"tree",
|
||||||
|
"ptree-support",
|
||||||
|
"textview",
|
||||||
"clipboard-cli",
|
"clipboard-cli",
|
||||||
"trash-support",
|
"trash-support",
|
||||||
|
"uuid-support",
|
||||||
"start",
|
"start",
|
||||||
"bson",
|
"bson",
|
||||||
"sqlite",
|
"sqlite",
|
||||||
@ -135,7 +135,6 @@ post = ["nu_plugin_post"]
|
|||||||
ps = ["nu_plugin_ps"]
|
ps = ["nu_plugin_ps"]
|
||||||
sys = ["nu_plugin_sys"]
|
sys = ["nu_plugin_sys"]
|
||||||
textview = ["nu_plugin_textview"]
|
textview = ["nu_plugin_textview"]
|
||||||
zip-support = ["nu-cli/zip", "nu-command/zip"]
|
|
||||||
|
|
||||||
# Extra
|
# Extra
|
||||||
binaryview = ["nu_plugin_binaryview"]
|
binaryview = ["nu_plugin_binaryview"]
|
||||||
@ -153,6 +152,8 @@ trash-support = [
|
|||||||
]
|
]
|
||||||
tree = ["nu_plugin_tree"]
|
tree = ["nu_plugin_tree"]
|
||||||
xpath = ["nu_plugin_xpath"]
|
xpath = ["nu_plugin_xpath"]
|
||||||
|
zip-support = ["nu-cli/zip", "nu-command/zip"]
|
||||||
|
|
||||||
#This is disabled in extra for now
|
#This is disabled in extra for now
|
||||||
table-pager = ["nu-command/table-pager"]
|
table-pager = ["nu-command/table-pager"]
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user