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