2019-05-10 18:59:12 +02:00
|
|
|
[package]
|
2020-03-15 18:12:28 +01:00
|
|
|
authors = ["The Nu Project Contributors"]
|
2020-07-05 22:12:44 +02:00
|
|
|
default-run = "nu"
|
2020-04-06 09:16:14 +02:00
|
|
|
description = "A new type of shell"
|
2020-07-05 22:12:44 +02:00
|
|
|
documentation = "https://www.nushell.sh/book/"
|
2019-05-10 18:59:12 +02:00
|
|
|
edition = "2018"
|
2020-07-05 22:12:44 +02:00
|
|
|
exclude = ["images"]
|
|
|
|
homepage = "https://www.nushell.sh"
|
|
|
|
license = "MIT"
|
|
|
|
name = "nu"
|
2019-07-16 21:17:46 +02:00
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/nushell/nushell"
|
2021-11-16 09:53:03 +01:00
|
|
|
version = "0.40.0"
|
2019-05-10 18:59:12 +02:00
|
|
|
|
2019-12-18 18:58:23 +01:00
|
|
|
[workspace]
|
2020-03-04 19:58:20 +01:00
|
|
|
members = ["crates/*/"]
|
2019-11-21 15:33:14 +01:00
|
|
|
|
2019-05-10 18:59:12 +02:00
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2021-11-16 09:53:03 +01:00
|
|
|
nu-cli = { version = "0.40.0", path="./crates/nu-cli", default-features=false }
|
|
|
|
nu-command = { version = "0.40.0", path="./crates/nu-command" }
|
|
|
|
nu-completion = { version = "0.40.0", path="./crates/nu-completion" }
|
|
|
|
nu-data = { version = "0.40.0", path="./crates/nu-data" }
|
|
|
|
nu-engine = { version = "0.40.0", path="./crates/nu-engine" }
|
|
|
|
nu-errors = { version = "0.40.0", path="./crates/nu-errors" }
|
|
|
|
nu-parser = { version = "0.40.0", path="./crates/nu-parser" }
|
|
|
|
nu-path = { version = "0.40.0", path="./crates/nu-path" }
|
|
|
|
nu-plugin = { version = "0.40.0", path="./crates/nu-plugin" }
|
|
|
|
nu-protocol = { version = "0.40.0", path="./crates/nu-protocol" }
|
|
|
|
nu-source = { version = "0.40.0", path="./crates/nu-source" }
|
|
|
|
nu-value-ext = { version = "0.40.0", path="./crates/nu-value-ext" }
|
2021-09-16 03:32:22 +02:00
|
|
|
|
2021-11-16 09:53:03 +01:00
|
|
|
nu_plugin_binaryview = { version = "0.40.0", path="./crates/nu_plugin_binaryview", optional=true }
|
|
|
|
nu_plugin_chart = { version = "0.40.0", path="./crates/nu_plugin_chart", optional=true }
|
|
|
|
nu_plugin_from_bson = { version = "0.40.0", path="./crates/nu_plugin_from_bson", optional=true }
|
|
|
|
nu_plugin_from_sqlite = { version = "0.40.0", path="./crates/nu_plugin_from_sqlite", optional=true }
|
|
|
|
nu_plugin_inc = { version = "0.40.0", path="./crates/nu_plugin_inc", optional=true }
|
|
|
|
nu_plugin_match = { version = "0.40.0", path="./crates/nu_plugin_match", optional=true }
|
|
|
|
nu_plugin_query_json = { version = "0.40.0", path="./crates/nu_plugin_query_json", optional=true }
|
|
|
|
nu_plugin_s3 = { version = "0.40.0", path="./crates/nu_plugin_s3", optional=true }
|
|
|
|
nu_plugin_selector = { version = "0.40.0", path="./crates/nu_plugin_selector", optional=true }
|
|
|
|
nu_plugin_start = { version = "0.40.0", path="./crates/nu_plugin_start", optional=true }
|
|
|
|
nu_plugin_textview = { version = "0.40.0", path="./crates/nu_plugin_textview", optional=true }
|
|
|
|
nu_plugin_to_bson = { version = "0.40.0", path="./crates/nu_plugin_to_bson", optional=true }
|
|
|
|
nu_plugin_to_sqlite = { version = "0.40.0", path="./crates/nu_plugin_to_sqlite", optional=true }
|
|
|
|
nu_plugin_tree = { version = "0.40.0", path="./crates/nu_plugin_tree", optional=true }
|
|
|
|
nu_plugin_xpath = { version = "0.40.0", path="./crates/nu_plugin_xpath", optional=true }
|
2019-12-04 22:14:52 +01:00
|
|
|
|
2020-09-26 08:32:52 +02:00
|
|
|
# Required to bootstrap the main binary
|
2021-06-22 07:22:33 +02:00
|
|
|
ctrlc = { version="3.1.7", optional=true }
|
|
|
|
futures = { version="0.3.12", features=["compat", "io-compat"] }
|
2021-01-10 03:50:49 +01:00
|
|
|
itertools = "0.10.0"
|
2019-05-23 06:30:43 +02:00
|
|
|
|
2020-03-04 19:58:20 +01:00
|
|
|
[dev-dependencies]
|
2021-11-16 09:53:03 +01:00
|
|
|
nu-test-support = { version = "0.40.0", path="./crates/nu-test-support" }
|
2021-02-19 02:24:27 +01:00
|
|
|
serial_test = "0.5.1"
|
2021-03-15 08:26:30 +01:00
|
|
|
hamcrest2 = "0.3.0"
|
2021-06-28 12:16:03 +02:00
|
|
|
rstest = "0.10.0"
|
2019-10-08 15:47:30 +02:00
|
|
|
|
2020-03-04 19:58:20 +01:00
|
|
|
[build-dependencies]
|
2020-01-11 21:49:20 +01:00
|
|
|
|
2019-08-29 01:32:58 +02:00
|
|
|
[features]
|
2021-09-01 04:29:09 +02:00
|
|
|
fetch-support = ["nu-command/fetch", "nu-command/post"]
|
|
|
|
sys-support = ["nu-command/sys", "nu-command/ps"]
|
2021-07-01 02:45:27 +02:00
|
|
|
ctrlc-support = ["nu-cli/ctrlc", "nu-command/ctrlc"]
|
2021-01-12 05:59:53 +01:00
|
|
|
rustyline-support = ["nu-cli/rustyline-support", "nu-command/rustyline-support"]
|
2021-07-01 00:47:56 +02:00
|
|
|
term-support = ["nu-command/term"]
|
|
|
|
uuid-support = ["nu-command/uuid_crate"]
|
|
|
|
which-support = ["nu-command/which", "nu-engine/which"]
|
2020-09-30 20:27:52 +02:00
|
|
|
|
2020-07-18 03:59:23 +02:00
|
|
|
default = [
|
2021-02-04 08:20:21 +01:00
|
|
|
"nu-cli/shadow-rs",
|
2021-09-01 04:29:09 +02:00
|
|
|
"sys-support",
|
2021-02-04 08:20:21 +01:00
|
|
|
"ctrlc-support",
|
|
|
|
"which-support",
|
|
|
|
"term-support",
|
|
|
|
"rustyline-support",
|
|
|
|
"match",
|
2021-09-01 04:29:09 +02:00
|
|
|
"fetch-support",
|
2021-02-04 08:20:21 +01:00
|
|
|
"zip-support",
|
2021-06-23 11:04:09 +02:00
|
|
|
"dataframe",
|
2020-07-18 03:59:23 +02:00
|
|
|
]
|
2021-02-04 08:20:21 +01:00
|
|
|
|
2020-09-02 05:37:06 +02:00
|
|
|
stable = ["default"]
|
2021-02-04 08:20:21 +01:00
|
|
|
extra = [
|
|
|
|
"default",
|
|
|
|
"binaryview",
|
2021-04-09 20:39:44 +02:00
|
|
|
"inc",
|
2021-02-04 08:20:21 +01:00
|
|
|
"tree",
|
2021-04-09 20:39:44 +02:00
|
|
|
"textview",
|
2021-02-04 08:20:21 +01:00
|
|
|
"trash-support",
|
2021-04-09 20:39:44 +02:00
|
|
|
"uuid-support",
|
2021-02-04 08:20:21 +01:00
|
|
|
"start",
|
|
|
|
"bson",
|
|
|
|
"sqlite",
|
|
|
|
"s3",
|
|
|
|
"chart",
|
|
|
|
"xpath",
|
|
|
|
"selector",
|
2021-04-19 18:19:06 +02:00
|
|
|
"query-json",
|
2021-02-04 08:20:21 +01:00
|
|
|
]
|
2020-01-13 07:17:56 +01:00
|
|
|
|
2021-07-06 17:33:24 +02:00
|
|
|
wasi = ["inc", "match", "match", "tree", "rustyline-support"]
|
2020-10-07 00:21:24 +02:00
|
|
|
|
2020-09-30 20:27:52 +02:00
|
|
|
# Stable (Default)
|
2020-09-26 08:32:52 +02:00
|
|
|
inc = ["nu_plugin_inc"]
|
2020-10-07 00:21:24 +02:00
|
|
|
match = ["nu_plugin_match"]
|
2020-09-26 08:32:52 +02:00
|
|
|
textview = ["nu_plugin_textview"]
|
2019-08-29 01:32:58 +02:00
|
|
|
|
2020-09-30 20:27:52 +02:00
|
|
|
# Extra
|
2020-10-07 00:21:24 +02:00
|
|
|
binaryview = ["nu_plugin_binaryview"]
|
2020-09-30 20:27:52 +02:00
|
|
|
bson = ["nu_plugin_from_bson", "nu_plugin_to_bson"]
|
|
|
|
chart = ["nu_plugin_chart"]
|
2021-04-19 18:19:06 +02:00
|
|
|
query-json = ["nu_plugin_query_json"]
|
2020-09-30 20:27:52 +02:00
|
|
|
s3 = ["nu_plugin_s3"]
|
2021-01-06 02:32:08 +01:00
|
|
|
selector = ["nu_plugin_selector"]
|
2020-09-30 20:27:52 +02:00
|
|
|
sqlite = ["nu_plugin_from_sqlite", "nu_plugin_to_sqlite"]
|
2020-10-07 00:21:24 +02:00
|
|
|
start = ["nu_plugin_start"]
|
2021-03-09 11:40:17 +01:00
|
|
|
trash-support = [
|
|
|
|
"nu-command/trash-support",
|
|
|
|
"nu-engine/trash-support",
|
|
|
|
]
|
2020-10-07 00:21:24 +02:00
|
|
|
tree = ["nu_plugin_tree"]
|
2020-10-13 01:18:39 +02:00
|
|
|
xpath = ["nu_plugin_xpath"]
|
2021-07-01 00:47:56 +02:00
|
|
|
zip-support = ["nu-command/zip"]
|
2021-04-09 20:39:44 +02:00
|
|
|
|
2021-05-12 03:01:31 +02:00
|
|
|
#dataframe feature for nushell
|
|
|
|
dataframe = [
|
2021-06-10 23:39:51 +02:00
|
|
|
"nu-engine/dataframe",
|
2021-05-12 03:01:31 +02:00
|
|
|
"nu-protocol/dataframe",
|
|
|
|
"nu-command/dataframe",
|
|
|
|
"nu-value-ext/dataframe",
|
2021-05-13 11:49:46 +02:00
|
|
|
"nu-data/dataframe",
|
|
|
|
"nu_plugin_to_bson/dataframe",
|
2021-05-12 03:01:31 +02:00
|
|
|
]
|
|
|
|
|
2021-08-16 22:45:39 +02:00
|
|
|
[profile.release]
|
2021-09-16 10:01:42 +02:00
|
|
|
opt-level = "s" # Optimize for size.
|
2021-08-16 22:45:39 +02:00
|
|
|
|
2019-12-10 01:05:40 +01:00
|
|
|
# Core plugins that ship with `cargo install nu` by default
|
2019-12-10 04:57:55 +01:00
|
|
|
# Currently, Cargo limits us to installing only one binary
|
|
|
|
# unless we use [[bin]], so we use this as a workaround
|
2019-12-10 01:05:40 +01:00
|
|
|
[[bin]]
|
2019-12-10 04:57:55 +01:00
|
|
|
name = "nu_plugin_core_textview"
|
2019-12-18 17:35:17 +01:00
|
|
|
path = "src/plugins/nu_plugin_core_textview.rs"
|
2019-12-10 01:05:40 +01:00
|
|
|
required-features = ["textview"]
|
|
|
|
|
2019-12-10 01:59:13 +01:00
|
|
|
[[bin]]
|
2019-12-10 04:57:55 +01:00
|
|
|
name = "nu_plugin_core_inc"
|
2019-12-18 17:35:17 +01:00
|
|
|
path = "src/plugins/nu_plugin_core_inc.rs"
|
2019-12-10 01:59:13 +01:00
|
|
|
required-features = ["inc"]
|
|
|
|
|
2020-02-10 21:32:10 +01:00
|
|
|
[[bin]]
|
2020-08-14 06:45:27 +02:00
|
|
|
name = "nu_plugin_core_match"
|
|
|
|
path = "src/plugins/nu_plugin_core_match.rs"
|
2020-02-10 21:32:10 +01:00
|
|
|
required-features = ["match"]
|
|
|
|
|
2020-08-14 06:45:27 +02:00
|
|
|
# Extra plugins
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "nu_plugin_extra_binaryview"
|
|
|
|
path = "src/plugins/nu_plugin_extra_binaryview.rs"
|
|
|
|
required-features = ["binaryview"]
|
|
|
|
|
2020-02-10 21:32:10 +01:00
|
|
|
[[bin]]
|
2020-08-14 06:45:27 +02:00
|
|
|
name = "nu_plugin_extra_tree"
|
|
|
|
path = "src/plugins/nu_plugin_extra_tree.rs"
|
2020-02-10 21:32:10 +01:00
|
|
|
required-features = ["tree"]
|
|
|
|
|
2021-04-19 18:19:06 +02:00
|
|
|
[[bin]]
|
|
|
|
name = "nu_plugin_extra_query_json"
|
|
|
|
path = "src/plugins/nu_plugin_extra_query_json.rs"
|
|
|
|
required-features = ["query-json"]
|
|
|
|
|
2020-05-09 19:28:57 +02:00
|
|
|
[[bin]]
|
2020-08-14 06:45:27 +02:00
|
|
|
name = "nu_plugin_extra_start"
|
|
|
|
path = "src/plugins/nu_plugin_extra_start.rs"
|
2020-05-09 19:28:57 +02:00
|
|
|
required-features = ["start"]
|
|
|
|
|
2020-08-12 19:20:22 +02:00
|
|
|
[[bin]]
|
2020-08-14 06:45:27 +02:00
|
|
|
name = "nu_plugin_extra_s3"
|
|
|
|
path = "src/plugins/nu_plugin_extra_s3.rs"
|
2020-08-12 19:20:22 +02:00
|
|
|
required-features = ["s3"]
|
|
|
|
|
2020-09-30 20:27:52 +02:00
|
|
|
[[bin]]
|
2020-10-02 02:23:10 +02:00
|
|
|
name = "nu_plugin_extra_chart_bar"
|
|
|
|
path = "src/plugins/nu_plugin_extra_chart_bar.rs"
|
|
|
|
required-features = ["chart"]
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "nu_plugin_extra_chart_line"
|
|
|
|
path = "src/plugins/nu_plugin_extra_chart_line.rs"
|
2020-09-30 20:27:52 +02:00
|
|
|
required-features = ["chart"]
|
|
|
|
|
2020-10-13 01:18:39 +02:00
|
|
|
[[bin]]
|
|
|
|
name = "nu_plugin_extra_xpath"
|
|
|
|
path = "src/plugins/nu_plugin_extra_xpath.rs"
|
|
|
|
required-features = ["xpath"]
|
|
|
|
|
2020-11-03 22:46:42 +01:00
|
|
|
[[bin]]
|
|
|
|
name = "nu_plugin_extra_selector"
|
|
|
|
path = "src/plugins/nu_plugin_extra_selector.rs"
|
|
|
|
required-features = ["selector"]
|
|
|
|
|
2020-10-14 11:46:06 +02:00
|
|
|
[[bin]]
|
|
|
|
name = "nu_plugin_extra_from_bson"
|
|
|
|
path = "src/plugins/nu_plugin_extra_from_bson.rs"
|
|
|
|
required-features = ["bson"]
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "nu_plugin_extra_to_bson"
|
|
|
|
path = "src/plugins/nu_plugin_extra_to_bson.rs"
|
|
|
|
required-features = ["bson"]
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "nu_plugin_extra_from_sqlite"
|
|
|
|
path = "src/plugins/nu_plugin_extra_from_sqlite.rs"
|
|
|
|
required-features = ["sqlite"]
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "nu_plugin_extra_to_sqlite"
|
|
|
|
path = "src/plugins/nu_plugin_extra_to_sqlite.rs"
|
|
|
|
required-features = ["sqlite"]
|
|
|
|
|
2019-12-10 01:05:40 +01:00
|
|
|
# Main nu binary
|
2019-06-27 06:56:48 +02:00
|
|
|
[[bin]]
|
|
|
|
name = "nu"
|
|
|
|
path = "src/main.rs"
|