mirror of
https://github.com/nushell/nushell.git
synced 2024-11-22 00:13:21 +01:00
tweak plugin names in cargo.toml (#4441)
This commit is contained in:
parent
48f4766a5f
commit
0256e42e3b
@ -98,23 +98,23 @@ opt-level = "s" # Optimize for size
|
|||||||
|
|
||||||
# Build plugins
|
# Build plugins
|
||||||
[[bin]]
|
[[bin]]
|
||||||
name = "nu_plugin_inc"
|
name = "nu_plugin_core_inc"
|
||||||
path = "src/plugins/nu_plugin_core_inc.rs"
|
path = "src/plugins/nu_plugin_core_inc.rs"
|
||||||
required-features = ["inc"]
|
required-features = ["inc"]
|
||||||
|
|
||||||
[[bin]]
|
[[bin]]
|
||||||
name = "nu_plugin_example"
|
name = "nu_plugin_core_example"
|
||||||
path = "src/plugins/nu_plugin_core_example.rs"
|
path = "src/plugins/nu_plugin_core_example.rs"
|
||||||
required-features = ["example"]
|
required-features = ["example"]
|
||||||
|
|
||||||
# Extra plugins
|
# Extra plugins
|
||||||
[[bin]]
|
[[bin]]
|
||||||
name = "nu_plugin_gstat"
|
name = "nu_plugin_extra_gstat"
|
||||||
path = "src/plugins/nu_plugin_extra_gstat.rs"
|
path = "src/plugins/nu_plugin_extra_gstat.rs"
|
||||||
required-features = ["gstat"]
|
required-features = ["gstat"]
|
||||||
|
|
||||||
[[bin]]
|
[[bin]]
|
||||||
name = "nu_plugin_query"
|
name = "nu_plugin_extra_query"
|
||||||
path = "src/plugins/nu_plugin_extra_query.rs"
|
path = "src/plugins/nu_plugin_extra_query.rs"
|
||||||
required-features = ["query"]
|
required-features = ["query"]
|
||||||
|
|
||||||
|
278
Cargo.toml.old
278
Cargo.toml.old
@ -10,7 +10,7 @@ license = "MIT"
|
|||||||
name = "nu"
|
name = "nu"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
repository = "https://github.com/nushell/nushell"
|
repository = "https://github.com/nushell/nushell"
|
||||||
version = "0.59.0"
|
version = "0.44.0"
|
||||||
|
|
||||||
[workspace]
|
[workspace]
|
||||||
members = ["crates/*/"]
|
members = ["crates/*/"]
|
||||||
@ -18,34 +18,34 @@ members = ["crates/*/"]
|
|||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
nu-cli = { version = "0.59.0", path="./crates/nu-cli", default-features=false }
|
nu-cli = { version = "0.44.0", path="./crates/nu-cli", default-features=false }
|
||||||
nu-command = { version = "0.59.0", path="./crates/nu-command" }
|
nu-command = { version = "0.44.0", path="./crates/nu-command" }
|
||||||
nu-completion = { version = "0.59.0", path="./crates/nu-completion" }
|
nu-completion = { version = "0.44.0", path="./crates/nu-completion" }
|
||||||
nu-data = { version = "0.59.0", path="./crates/nu-data" }
|
nu-data = { version = "0.44.0", path="./crates/nu-data" }
|
||||||
nu-engine = { version = "0.59.0", path="./crates/nu-engine" }
|
nu-engine = { version = "0.44.0", path="./crates/nu-engine" }
|
||||||
nu-errors = { version = "0.59.0", path="./crates/nu-errors" }
|
nu-errors = { version = "0.44.0", path="./crates/nu-errors" }
|
||||||
nu-parser = { version = "0.59.0", path="./crates/nu-parser" }
|
nu-parser = { version = "0.44.0", path="./crates/nu-parser" }
|
||||||
nu-path = { version = "0.59.0", path="./crates/nu-path" }
|
nu-path = { version = "0.44.0", path="./crates/nu-path" }
|
||||||
nu-plugin = { version = "0.59.0", path="./crates/nu-plugin" }
|
nu-plugin = { version = "0.44.0", path="./crates/nu-plugin" }
|
||||||
nu-protocol = { version = "0.59.0", path="./crates/nu-protocol" }
|
nu-protocol = { version = "0.44.0", path="./crates/nu-protocol" }
|
||||||
nu-source = { version = "0.59.0", path="./crates/nu-source" }
|
nu-source = { version = "0.44.0", path="./crates/nu-source" }
|
||||||
nu-value-ext = { version = "0.59.0", path="./crates/nu-value-ext" }
|
nu-value-ext = { version = "0.44.0", path="./crates/nu-value-ext" }
|
||||||
|
|
||||||
# nu_plugin_binaryview = { version = "0.59.0", path="./crates/nu_plugin_binaryview", optional=true }
|
nu_plugin_binaryview = { version = "0.44.0", path="./crates/nu_plugin_binaryview", optional=true }
|
||||||
# nu_plugin_chart = { version = "0.59.0", path="./crates/nu_plugin_chart", optional=true }
|
nu_plugin_chart = { version = "0.44.0", path="./crates/nu_plugin_chart", optional=true }
|
||||||
# nu_plugin_from_bson = { version = "0.59.0", path="./crates/nu_plugin_from_bson", optional=true }
|
nu_plugin_from_bson = { version = "0.44.0", path="./crates/nu_plugin_from_bson", optional=true }
|
||||||
# nu_plugin_from_sqlite = { version = "0.59.0", path="./crates/nu_plugin_from_sqlite", optional=true }
|
nu_plugin_from_sqlite = { version = "0.44.0", path="./crates/nu_plugin_from_sqlite", optional=true }
|
||||||
# nu_plugin_inc = { version = "0.59.0", path="./crates/nu_plugin_inc", optional=true }
|
nu_plugin_inc = { version = "0.44.0", path="./crates/nu_plugin_inc", optional=true }
|
||||||
# nu_plugin_match = { version = "0.59.0", path="./crates/nu_plugin_match", optional=true }
|
nu_plugin_match = { version = "0.44.0", path="./crates/nu_plugin_match", optional=true }
|
||||||
# nu_plugin_query_json = { version = "0.59.0", path="./crates/nu_plugin_query_json", optional=true }
|
nu_plugin_query_json = { version = "0.44.0", path="./crates/nu_plugin_query_json", optional=true }
|
||||||
# nu_plugin_s3 = { version = "0.59.0", path="./crates/nu_plugin_s3", optional=true }
|
nu_plugin_s3 = { version = "0.44.0", path="./crates/nu_plugin_s3", optional=true }
|
||||||
# nu_plugin_selector = { version = "0.59.0", path="./crates/nu_plugin_selector", optional=true }
|
nu_plugin_selector = { version = "0.44.0", path="./crates/nu_plugin_selector", optional=true }
|
||||||
# nu_plugin_start = { version = "0.59.0", path="./crates/nu_plugin_start", optional=true }
|
nu_plugin_start = { version = "0.44.0", path="./crates/nu_plugin_start", optional=true }
|
||||||
# nu_plugin_textview = { version = "0.59.0", path="./crates/nu_plugin_textview", optional=true }
|
nu_plugin_textview = { version = "0.44.0", path="./crates/nu_plugin_textview", optional=true }
|
||||||
# nu_plugin_to_bson = { version = "0.59.0", path="./crates/nu_plugin_to_bson", optional=true }
|
nu_plugin_to_bson = { version = "0.44.0", path="./crates/nu_plugin_to_bson", optional=true }
|
||||||
# nu_plugin_to_sqlite = { version = "0.59.0", path="./crates/nu_plugin_to_sqlite", optional=true }
|
nu_plugin_to_sqlite = { version = "0.44.0", path="./crates/nu_plugin_to_sqlite", optional=true }
|
||||||
# nu_plugin_tree = { version = "0.59.0", path="./crates/nu_plugin_tree", optional=true }
|
nu_plugin_tree = { version = "0.44.0", path="./crates/nu_plugin_tree", optional=true }
|
||||||
# nu_plugin_xpath = { version = "0.59.0", path="./crates/nu_plugin_xpath", optional=true }
|
nu_plugin_xpath = { version = "0.44.0", path="./crates/nu_plugin_xpath", optional=true }
|
||||||
|
|
||||||
# Required to bootstrap the main binary
|
# Required to bootstrap the main binary
|
||||||
ctrlc = { version="3.1.7", optional=true }
|
ctrlc = { version="3.1.7", optional=true }
|
||||||
@ -53,7 +53,7 @@ futures = { version="0.3.12", features=["compat", "io-compat"] }
|
|||||||
itertools = "0.10.0"
|
itertools = "0.10.0"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
nu-test-support = { version = "0.59.0", path="./crates/nu-test-support" }
|
nu-test-support = { version = "0.44.0", path="./crates/nu-test-support" }
|
||||||
serial_test = "0.5.1"
|
serial_test = "0.5.1"
|
||||||
hamcrest2 = "0.3.0"
|
hamcrest2 = "0.3.0"
|
||||||
rstest = "0.10.0"
|
rstest = "0.10.0"
|
||||||
@ -76,7 +76,7 @@ default = [
|
|||||||
"which-support",
|
"which-support",
|
||||||
"term-support",
|
"term-support",
|
||||||
"rustyline-support",
|
"rustyline-support",
|
||||||
# "match",
|
"match",
|
||||||
"fetch-support",
|
"fetch-support",
|
||||||
"zip-support",
|
"zip-support",
|
||||||
"dataframe",
|
"dataframe",
|
||||||
@ -85,44 +85,44 @@ default = [
|
|||||||
stable = ["default"]
|
stable = ["default"]
|
||||||
extra = [
|
extra = [
|
||||||
"default",
|
"default",
|
||||||
# "binaryview",
|
"binaryview",
|
||||||
# "inc",
|
"inc",
|
||||||
# "tree",
|
"tree",
|
||||||
# "textview",
|
"textview",
|
||||||
"trash-support",
|
"trash-support",
|
||||||
"uuid-support",
|
"uuid-support",
|
||||||
# "start",
|
"start",
|
||||||
# "bson",
|
"bson",
|
||||||
# "sqlite",
|
"sqlite",
|
||||||
# "s3",
|
"s3",
|
||||||
# "chart",
|
"chart",
|
||||||
# "xpath",
|
"xpath",
|
||||||
# "selector",
|
"selector",
|
||||||
# "query-json",
|
"query-json",
|
||||||
]
|
]
|
||||||
|
|
||||||
# wasi = ["inc", "match", "match", "tree", "rustyline-support"]
|
wasi = ["inc", "match", "match", "tree", "rustyline-support"]
|
||||||
|
|
||||||
# Stable (Default)
|
# Stable (Default)
|
||||||
# inc = ["nu_plugin_inc"]
|
inc = ["nu_plugin_inc"]
|
||||||
# match = ["nu_plugin_match"]
|
match = ["nu_plugin_match"]
|
||||||
# textview = ["nu_plugin_textview"]
|
textview = ["nu_plugin_textview"]
|
||||||
|
|
||||||
# Extra
|
# Extra
|
||||||
# binaryview = ["nu_plugin_binaryview"]
|
binaryview = ["nu_plugin_binaryview"]
|
||||||
# bson = ["nu_plugin_from_bson", "nu_plugin_to_bson"]
|
bson = ["nu_plugin_from_bson", "nu_plugin_to_bson"]
|
||||||
# chart = ["nu_plugin_chart"]
|
chart = ["nu_plugin_chart"]
|
||||||
# query-json = ["nu_plugin_query_json"]
|
query-json = ["nu_plugin_query_json"]
|
||||||
# s3 = ["nu_plugin_s3"]
|
s3 = ["nu_plugin_s3"]
|
||||||
# selector = ["nu_plugin_selector"]
|
selector = ["nu_plugin_selector"]
|
||||||
# sqlite = ["nu_plugin_from_sqlite", "nu_plugin_to_sqlite"]
|
sqlite = ["nu_plugin_from_sqlite", "nu_plugin_to_sqlite"]
|
||||||
# start = ["nu_plugin_start"]
|
start = ["nu_plugin_start"]
|
||||||
trash-support = [
|
trash-support = [
|
||||||
"nu-command/trash-support",
|
"nu-command/trash-support",
|
||||||
"nu-engine/trash-support",
|
"nu-engine/trash-support",
|
||||||
]
|
]
|
||||||
# tree = ["nu_plugin_tree"]
|
tree = ["nu_plugin_tree"]
|
||||||
# xpath = ["nu_plugin_xpath"]
|
xpath = ["nu_plugin_xpath"]
|
||||||
zip-support = ["nu-command/zip"]
|
zip-support = ["nu-command/zip"]
|
||||||
|
|
||||||
#dataframe feature for nushell
|
#dataframe feature for nushell
|
||||||
@ -132,7 +132,7 @@ dataframe = [
|
|||||||
"nu-command/dataframe",
|
"nu-command/dataframe",
|
||||||
"nu-value-ext/dataframe",
|
"nu-value-ext/dataframe",
|
||||||
"nu-data/dataframe",
|
"nu-data/dataframe",
|
||||||
# "nu_plugin_to_bson/dataframe",
|
"nu_plugin_to_bson/dataframe",
|
||||||
]
|
]
|
||||||
|
|
||||||
[profile.release]
|
[profile.release]
|
||||||
@ -141,88 +141,88 @@ opt-level = "s" # Optimize for size.
|
|||||||
# Core plugins that ship with `cargo install nu` by default
|
# Core plugins that ship with `cargo install nu` by default
|
||||||
# Currently, Cargo limits us to installing only one binary
|
# Currently, Cargo limits us to installing only one binary
|
||||||
# unless we use [[bin]], so we use this as a workaround
|
# unless we use [[bin]], so we use this as a workaround
|
||||||
# [[bin]]
|
[[bin]]
|
||||||
# name = "nu_plugin_core_textview"
|
name = "nu_plugin_core_textview"
|
||||||
# path = "src/plugins/nu_plugin_core_textview.rs"
|
path = "src/plugins/nu_plugin_core_textview.rs"
|
||||||
# required-features = ["textview"]
|
required-features = ["textview"]
|
||||||
#
|
|
||||||
# [[bin]]
|
[[bin]]
|
||||||
# name = "nu_plugin_core_inc"
|
name = "nu_plugin_core_inc"
|
||||||
# path = "src/plugins/nu_plugin_core_inc.rs"
|
path = "src/plugins/nu_plugin_core_inc.rs"
|
||||||
# required-features = ["inc"]
|
required-features = ["inc"]
|
||||||
#
|
|
||||||
# [[bin]]
|
[[bin]]
|
||||||
# name = "nu_plugin_core_match"
|
name = "nu_plugin_core_match"
|
||||||
# path = "src/plugins/nu_plugin_core_match.rs"
|
path = "src/plugins/nu_plugin_core_match.rs"
|
||||||
# required-features = ["match"]
|
required-features = ["match"]
|
||||||
#
|
|
||||||
# # Extra plugins
|
# Extra plugins
|
||||||
#
|
|
||||||
# [[bin]]
|
[[bin]]
|
||||||
# name = "nu_plugin_extra_binaryview"
|
name = "nu_plugin_extra_binaryview"
|
||||||
# path = "src/plugins/nu_plugin_extra_binaryview.rs"
|
path = "src/plugins/nu_plugin_extra_binaryview.rs"
|
||||||
# required-features = ["binaryview"]
|
required-features = ["binaryview"]
|
||||||
#
|
|
||||||
# [[bin]]
|
[[bin]]
|
||||||
# name = "nu_plugin_extra_tree"
|
name = "nu_plugin_extra_tree"
|
||||||
# path = "src/plugins/nu_plugin_extra_tree.rs"
|
path = "src/plugins/nu_plugin_extra_tree.rs"
|
||||||
# required-features = ["tree"]
|
required-features = ["tree"]
|
||||||
#
|
|
||||||
# [[bin]]
|
[[bin]]
|
||||||
# name = "nu_plugin_extra_query_json"
|
name = "nu_plugin_extra_query_json"
|
||||||
# path = "src/plugins/nu_plugin_extra_query_json.rs"
|
path = "src/plugins/nu_plugin_extra_query_json.rs"
|
||||||
# required-features = ["query-json"]
|
required-features = ["query-json"]
|
||||||
#
|
|
||||||
# [[bin]]
|
[[bin]]
|
||||||
# name = "nu_plugin_extra_start"
|
name = "nu_plugin_extra_start"
|
||||||
# path = "src/plugins/nu_plugin_extra_start.rs"
|
path = "src/plugins/nu_plugin_extra_start.rs"
|
||||||
# required-features = ["start"]
|
required-features = ["start"]
|
||||||
#
|
|
||||||
# [[bin]]
|
[[bin]]
|
||||||
# name = "nu_plugin_extra_s3"
|
name = "nu_plugin_extra_s3"
|
||||||
# path = "src/plugins/nu_plugin_extra_s3.rs"
|
path = "src/plugins/nu_plugin_extra_s3.rs"
|
||||||
# required-features = ["s3"]
|
required-features = ["s3"]
|
||||||
#
|
|
||||||
# [[bin]]
|
[[bin]]
|
||||||
# name = "nu_plugin_extra_chart_bar"
|
name = "nu_plugin_extra_chart_bar"
|
||||||
# path = "src/plugins/nu_plugin_extra_chart_bar.rs"
|
path = "src/plugins/nu_plugin_extra_chart_bar.rs"
|
||||||
# required-features = ["chart"]
|
required-features = ["chart"]
|
||||||
#
|
|
||||||
# [[bin]]
|
[[bin]]
|
||||||
# name = "nu_plugin_extra_chart_line"
|
name = "nu_plugin_extra_chart_line"
|
||||||
# path = "src/plugins/nu_plugin_extra_chart_line.rs"
|
path = "src/plugins/nu_plugin_extra_chart_line.rs"
|
||||||
# required-features = ["chart"]
|
required-features = ["chart"]
|
||||||
#
|
|
||||||
# [[bin]]
|
[[bin]]
|
||||||
# name = "nu_plugin_extra_xpath"
|
name = "nu_plugin_extra_xpath"
|
||||||
# path = "src/plugins/nu_plugin_extra_xpath.rs"
|
path = "src/plugins/nu_plugin_extra_xpath.rs"
|
||||||
# required-features = ["xpath"]
|
required-features = ["xpath"]
|
||||||
#
|
|
||||||
# [[bin]]
|
[[bin]]
|
||||||
# name = "nu_plugin_extra_selector"
|
name = "nu_plugin_extra_selector"
|
||||||
# path = "src/plugins/nu_plugin_extra_selector.rs"
|
path = "src/plugins/nu_plugin_extra_selector.rs"
|
||||||
# required-features = ["selector"]
|
required-features = ["selector"]
|
||||||
#
|
|
||||||
# [[bin]]
|
[[bin]]
|
||||||
# name = "nu_plugin_extra_from_bson"
|
name = "nu_plugin_extra_from_bson"
|
||||||
# path = "src/plugins/nu_plugin_extra_from_bson.rs"
|
path = "src/plugins/nu_plugin_extra_from_bson.rs"
|
||||||
# required-features = ["bson"]
|
required-features = ["bson"]
|
||||||
#
|
|
||||||
# [[bin]]
|
[[bin]]
|
||||||
# name = "nu_plugin_extra_to_bson"
|
name = "nu_plugin_extra_to_bson"
|
||||||
# path = "src/plugins/nu_plugin_extra_to_bson.rs"
|
path = "src/plugins/nu_plugin_extra_to_bson.rs"
|
||||||
# required-features = ["bson"]
|
required-features = ["bson"]
|
||||||
#
|
|
||||||
# [[bin]]
|
[[bin]]
|
||||||
# name = "nu_plugin_extra_from_sqlite"
|
name = "nu_plugin_extra_from_sqlite"
|
||||||
# path = "src/plugins/nu_plugin_extra_from_sqlite.rs"
|
path = "src/plugins/nu_plugin_extra_from_sqlite.rs"
|
||||||
# required-features = ["sqlite"]
|
required-features = ["sqlite"]
|
||||||
#
|
|
||||||
# [[bin]]
|
[[bin]]
|
||||||
# name = "nu_plugin_extra_to_sqlite"
|
name = "nu_plugin_extra_to_sqlite"
|
||||||
# path = "src/plugins/nu_plugin_extra_to_sqlite.rs"
|
path = "src/plugins/nu_plugin_extra_to_sqlite.rs"
|
||||||
# required-features = ["sqlite"]
|
required-features = ["sqlite"]
|
||||||
#
|
|
||||||
# Main nu binary
|
# Main nu binary
|
||||||
[[bin]]
|
[[bin]]
|
||||||
name = "nu"
|
name = "nu"
|
||||||
|
@ -255,7 +255,7 @@
|
|||||||
DiskId='1'
|
DiskId='1'
|
||||||
Source='target\$(var.Profile)\nu_plugin_query_json.exe'
|
Source='target\$(var.Profile)\nu_plugin_query_json.exe'
|
||||||
KeyPath='yes'/>
|
KeyPath='yes'/>
|
||||||
</Component> -->
|
</Component>
|
||||||
<Component Id='binary21' Guid='*' Win64='$(var.Win64)'>
|
<Component Id='binary21' Guid='*' Win64='$(var.Win64)'>
|
||||||
<File
|
<File
|
||||||
Id='exe21'
|
Id='exe21'
|
||||||
@ -263,7 +263,7 @@
|
|||||||
DiskId='1'
|
DiskId='1'
|
||||||
Source='target\$(var.Profile)\nu_plugin_example.exe'
|
Source='target\$(var.Profile)\nu_plugin_example.exe'
|
||||||
KeyPath='yes'/>
|
KeyPath='yes'/>
|
||||||
</Component>
|
</Component> -->
|
||||||
<Component Id='binary22' Guid='*' Win64='$(var.Win64)'>
|
<Component Id='binary22' Guid='*' Win64='$(var.Win64)'>
|
||||||
<File
|
<File
|
||||||
Id='exe22'
|
Id='exe22'
|
||||||
@ -312,8 +312,8 @@
|
|||||||
<ComponentRef Id='binary17'/>
|
<ComponentRef Id='binary17'/>
|
||||||
<ComponentRef Id='binary18'/>
|
<ComponentRef Id='binary18'/>
|
||||||
<ComponentRef Id='binary19'/>
|
<ComponentRef Id='binary19'/>
|
||||||
<ComponentRef Id='binary20'/> -->
|
<ComponentRef Id='binary20'/>
|
||||||
<ComponentRef Id='binary21'/>
|
<ComponentRef Id='binary21'/> -->
|
||||||
<ComponentRef Id='binary22'/>
|
<ComponentRef Id='binary22'/>
|
||||||
|
|
||||||
<Feature
|
<Feature
|
||||||
|
Loading…
Reference in New Issue
Block a user