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"
|
2022-02-07 20:54:06 +01:00
|
|
|
version = "0.59.0"
|
2021-06-30 03:42:56 +02:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
2021-08-25 21:29:36 +02:00
|
|
|
[workspace]
|
2021-10-28 08:12:33 +02:00
|
|
|
members = [
|
|
|
|
"crates/nu-cli",
|
|
|
|
"crates/nu-engine",
|
|
|
|
"crates/nu-parser",
|
2022-01-14 07:20:53 +01:00
|
|
|
"crates/nu-system",
|
2021-10-28 08:12:33 +02:00
|
|
|
"crates/nu-command",
|
|
|
|
"crates/nu-protocol",
|
|
|
|
"crates/nu-plugin",
|
2021-11-04 23:04:21 +01:00
|
|
|
"crates/nu_plugin_inc",
|
2021-12-06 18:28:11 +01:00
|
|
|
"crates/nu_plugin_gstat",
|
2021-12-02 06:42:56 +01:00
|
|
|
"crates/nu_plugin_example",
|
2022-02-01 19:45:48 +01:00
|
|
|
"crates/nu_plugin_query",
|
2021-10-28 08:12:33 +02:00
|
|
|
]
|
2021-08-25 21:29:36 +02:00
|
|
|
|
2021-06-30 03:42:56 +02:00
|
|
|
[dependencies]
|
2022-02-09 23:08:16 +01:00
|
|
|
chrono = "0.4.19"
|
2022-02-26 18:23:05 +01:00
|
|
|
crossterm = "0.22.1"
|
2022-02-09 23:08:16 +01:00
|
|
|
crossterm_winapi = "0.9.0"
|
|
|
|
ctrlc = "3.2.1"
|
|
|
|
# lazy_static = "1.4.0"
|
|
|
|
log = "0.4"
|
2022-02-21 04:31:50 +01:00
|
|
|
miette = "4.1.0"
|
2022-02-09 23:08:16 +01:00
|
|
|
nu-ansi-term = "0.42.0"
|
2022-02-07 20:54:06 +01:00
|
|
|
nu-cli = { path="./crates/nu-cli", version = "0.59.0" }
|
2022-02-09 23:08:16 +01:00
|
|
|
nu-color-config = { path = "./crates/nu-color-config", version = "0.59.0" }
|
2022-02-07 20:54:06 +01:00
|
|
|
nu-command = { path="./crates/nu-command", version = "0.59.0" }
|
|
|
|
nu-engine = { path="./crates/nu-engine", version = "0.59.0" }
|
|
|
|
nu-json = { path="./crates/nu-json", version = "0.59.0" }
|
|
|
|
nu-parser = { path="./crates/nu-parser", version = "0.59.0" }
|
|
|
|
nu-path = { path="./crates/nu-path", version = "0.59.0" }
|
2022-02-09 23:08:16 +01:00
|
|
|
nu-plugin = { path = "./crates/nu-plugin", optional = true, version = "0.59.0" }
|
2022-02-07 20:54:06 +01:00
|
|
|
nu-pretty-hex = { path = "./crates/nu-pretty-hex", version = "0.59.0" }
|
|
|
|
nu-protocol = { path = "./crates/nu-protocol", version = "0.59.0" }
|
|
|
|
nu-system = { path = "./crates/nu-system", version = "0.59.0" }
|
|
|
|
nu-table = { path = "./crates/nu-table", version = "0.59.0" }
|
|
|
|
nu-term-grid = { path = "./crates/nu-term-grid", version = "0.59.0" }
|
2022-01-01 22:42:50 +01:00
|
|
|
pretty_env_logger = "0.4.0"
|
2022-02-11 19:46:36 +01:00
|
|
|
rayon = "1.5.1"
|
2022-02-09 23:08:16 +01:00
|
|
|
reedline = { git = "https://github.com/nushell/reedline", branch = "main" }
|
2022-02-22 16:55:28 +01:00
|
|
|
is_executable = "1.0.1"
|
|
|
|
|
2021-07-30 22:02:16 +02:00
|
|
|
# mimalloc = { version = "*", default-features = false }
|
|
|
|
|
2022-02-09 23:08:16 +01:00
|
|
|
# Plugins
|
2022-02-07 20:54:06 +01:00
|
|
|
nu_plugin_example = { version = "0.59.0", path = "./crates/nu_plugin_example", optional = true }
|
|
|
|
nu_plugin_gstat = { version = "0.59.0", path = "./crates/nu_plugin_gstat", optional = true }
|
2022-02-09 23:08:16 +01:00
|
|
|
nu_plugin_inc = { version = "0.59.0", path = "./crates/nu_plugin_inc", optional = true }
|
2022-02-07 20:54:06 +01:00
|
|
|
nu_plugin_query = { version = "0.59.0", path = "./crates/nu_plugin_query", optional = true }
|
2021-11-02 21:56:00 +01:00
|
|
|
|
2021-07-30 22:02:16 +02:00
|
|
|
[dev-dependencies]
|
2022-02-02 21:59:01 +01:00
|
|
|
nu-test-support = { path="./crates/nu-test-support" }
|
2021-07-30 22:02:16 +02:00
|
|
|
tempfile = "3.2.0"
|
2021-12-16 10:40:05 +01:00
|
|
|
assert_cmd = "2.0.2"
|
|
|
|
pretty_assertions = "1.0.0"
|
2022-02-02 21:59:01 +01:00
|
|
|
serial_test = "0.5.1"
|
|
|
|
hamcrest2 = "0.3.0"
|
|
|
|
rstest = "0.12.0"
|
|
|
|
itertools = "0.10.3"
|
2021-12-07 21:06:34 +01:00
|
|
|
|
|
|
|
[features]
|
|
|
|
plugin = ["nu-plugin", "nu-parser/plugin", "nu-command/plugin", "nu-protocol/plugin", "nu-engine/plugin"]
|
2022-02-09 23:08:16 +01:00
|
|
|
default = ["plugin", "inc", "example", "which"]
|
2021-12-07 21:06:34 +01:00
|
|
|
stable = ["default"]
|
2022-02-20 22:26:41 +01:00
|
|
|
extra = ["default", "dataframe", "gstat", "zip-support", "query", "trash-support"]
|
2021-12-07 21:06:34 +01:00
|
|
|
wasi = ["inc"]
|
2022-02-10 00:20:46 +01:00
|
|
|
trash-support = ["nu-command/trash-support"]
|
2021-12-07 21:06:34 +01:00
|
|
|
|
|
|
|
# Stable (Default)
|
|
|
|
inc = ["nu_plugin_inc"]
|
|
|
|
example = ["nu_plugin_example"]
|
2022-01-20 19:02:53 +01:00
|
|
|
which = ["nu-command/which"]
|
|
|
|
|
2021-12-07 21:06:34 +01:00
|
|
|
# Extra
|
|
|
|
gstat = ["nu_plugin_gstat"]
|
2021-12-10 02:16:35 +01:00
|
|
|
zip-support = ["nu-command/zip"]
|
2022-02-01 19:45:48 +01:00
|
|
|
query = ["nu_plugin_query"]
|
2021-12-10 02:16:35 +01:00
|
|
|
|
2021-12-07 21:06:34 +01:00
|
|
|
# Dataframe feature for nushell
|
|
|
|
dataframe = ["nu-command/dataframe"]
|
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
opt-level = "s" # Optimize for size
|
2022-02-28 13:13:24 +01:00
|
|
|
strip = "debuginfo"
|
|
|
|
|
|
|
|
# build with `cargo build --profile profiling`
|
|
|
|
# to analyze performance with tooling like linux perf
|
|
|
|
[profile.profiling]
|
|
|
|
inherits = "release"
|
|
|
|
strip = false
|
|
|
|
debug = true
|
2021-12-07 21:06:34 +01:00
|
|
|
|
|
|
|
# Build plugins
|
|
|
|
[[bin]]
|
2022-02-12 15:14:17 +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]]
|
2022-02-12 15:14:17 +01:00
|
|
|
name = "nu_plugin_core_example"
|
2021-12-07 21:06:34 +01:00
|
|
|
path = "src/plugins/nu_plugin_core_example.rs"
|
|
|
|
required-features = ["example"]
|
|
|
|
|
|
|
|
# Extra plugins
|
|
|
|
[[bin]]
|
2022-02-12 15:14:17 +01:00
|
|
|
name = "nu_plugin_extra_gstat"
|
2021-12-07 21:06:34 +01:00
|
|
|
path = "src/plugins/nu_plugin_extra_gstat.rs"
|
|
|
|
required-features = ["gstat"]
|
|
|
|
|
2022-02-01 19:45:48 +01:00
|
|
|
[[bin]]
|
2022-02-12 15:14:17 +01:00
|
|
|
name = "nu_plugin_extra_query"
|
2022-02-01 19:45:48 +01:00
|
|
|
path = "src/plugins/nu_plugin_extra_query.rs"
|
|
|
|
required-features = ["query"]
|
2020-10-14 11:46:06 +02:00
|
|
|
|
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"
|