2019-05-10 09:59:12 -07:00
|
|
|
[package]
|
2022-03-13 11:30:27 -07:00
|
|
|
authors = ["The Nushell Project Developers"]
|
2020-07-05 13:12:44 -07:00
|
|
|
default-run = "nu"
|
2020-04-06 00:16:14 -07:00
|
|
|
description = "A new type of shell"
|
2020-07-05 13:12:44 -07:00
|
|
|
documentation = "https://www.nushell.sh/book/"
|
2019-05-10 09:59:12 -07:00
|
|
|
edition = "2018"
|
2020-07-05 13:12:44 -07:00
|
|
|
exclude = ["images"]
|
|
|
|
homepage = "https://www.nushell.sh"
|
|
|
|
license = "MIT"
|
|
|
|
name = "nu"
|
2019-07-17 07:17:46 +12:00
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/nushell/nushell"
|
2022-03-24 15:08:34 -04:00
|
|
|
rust-version = "1.59"
|
2022-04-16 09:29:30 +12:00
|
|
|
version = "0.61.1"
|
2021-06-30 13:42:56 +12:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
2021-08-26 07:29:36 +12:00
|
|
|
[workspace]
|
2021-10-28 07:12:33 +01:00
|
|
|
members = [
|
|
|
|
"crates/nu-cli",
|
|
|
|
"crates/nu-engine",
|
|
|
|
"crates/nu-parser",
|
2022-01-14 17:20:53 +11:00
|
|
|
"crates/nu-system",
|
2021-10-28 07:12:33 +01: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 11:28:11 -06:00
|
|
|
"crates/nu_plugin_gstat",
|
2021-12-02 05:42:56 +00:00
|
|
|
"crates/nu_plugin_example",
|
2022-02-01 12:45:48 -06:00
|
|
|
"crates/nu_plugin_query",
|
2022-03-16 17:21:06 -05:00
|
|
|
"crates/nu-utils",
|
2021-10-28 07:12:33 +01:00
|
|
|
]
|
2021-08-26 07:29:36 +12:00
|
|
|
|
2021-06-30 13:42:56 +12:00
|
|
|
[dependencies]
|
2022-02-09 16:08:16 -06:00
|
|
|
chrono = "0.4.19"
|
2022-03-01 07:05:46 -05:00
|
|
|
crossterm = "0.23.0"
|
2022-02-09 16:08:16 -06:00
|
|
|
ctrlc = "3.2.1"
|
|
|
|
log = "0.4"
|
2022-04-18 05:34:10 -07:00
|
|
|
miette = "4.5.0"
|
2022-03-27 14:01:04 +01:00
|
|
|
nu-ansi-term = "0.45.1"
|
2022-04-16 09:29:30 +12:00
|
|
|
nu-cli = { path="./crates/nu-cli", version = "0.61.1" }
|
|
|
|
nu-color-config = { path = "./crates/nu-color-config", version = "0.61.1" }
|
|
|
|
nu-command = { path="./crates/nu-command", version = "0.61.1" }
|
|
|
|
nu-engine = { path="./crates/nu-engine", version = "0.61.1" }
|
|
|
|
nu-json = { path="./crates/nu-json", version = "0.61.1" }
|
|
|
|
nu-parser = { path="./crates/nu-parser", version = "0.61.1" }
|
|
|
|
nu-path = { path="./crates/nu-path", version = "0.61.1" }
|
|
|
|
nu-plugin = { path = "./crates/nu-plugin", optional = true, version = "0.61.1" }
|
|
|
|
nu-pretty-hex = { path = "./crates/nu-pretty-hex", version = "0.61.1" }
|
|
|
|
nu-protocol = { path = "./crates/nu-protocol", version = "0.61.1" }
|
|
|
|
nu-system = { path = "./crates/nu-system", version = "0.61.1" }
|
|
|
|
nu-table = { path = "./crates/nu-table", version = "0.61.1" }
|
|
|
|
nu-term-grid = { path = "./crates/nu-term-grid", version = "0.61.1" }
|
2022-01-02 08:42:50 +11:00
|
|
|
pretty_env_logger = "0.4.0"
|
2022-02-11 12:46:36 -06:00
|
|
|
rayon = "1.5.1"
|
2022-04-20 11:10:33 +02:00
|
|
|
reedline = { git = "https://github.com/nushell/reedline", branch = "main", features = ["bashisms"]}
|
2022-02-22 10:55:28 -05:00
|
|
|
is_executable = "1.0.1"
|
|
|
|
|
2021-07-31 08:02:16 +12:00
|
|
|
[dev-dependencies]
|
2022-04-16 09:29:30 +12:00
|
|
|
nu-test-support = { path="./crates/nu-test-support", version = "0.61.1" }
|
2021-07-31 08:02:16 +12:00
|
|
|
tempfile = "3.2.0"
|
2021-12-16 20:40:05 +11:00
|
|
|
assert_cmd = "2.0.2"
|
|
|
|
pretty_assertions = "1.0.0"
|
2022-02-02 15:59:01 -05:00
|
|
|
serial_test = "0.5.1"
|
|
|
|
hamcrest2 = "0.3.0"
|
|
|
|
rstest = "0.12.0"
|
|
|
|
itertools = "0.10.3"
|
2021-12-07 14:06:34 -06:00
|
|
|
|
2022-03-05 22:56:23 +01:00
|
|
|
[target.'cfg(windows)'.build-dependencies]
|
|
|
|
embed-resource = "1"
|
|
|
|
|
2021-12-07 14:06:34 -06:00
|
|
|
[features]
|
2022-03-16 18:17:06 +00:00
|
|
|
plugin = ["nu-plugin", "nu-cli/plugin", "nu-parser/plugin", "nu-command/plugin", "nu-protocol/plugin", "nu-engine/plugin"]
|
2022-04-20 16:50:14 +03:00
|
|
|
default = ["plugin", "which-support", "trash-support"]
|
2021-12-07 14:06:34 -06:00
|
|
|
stable = ["default"]
|
2022-04-24 18:26:56 -05:00
|
|
|
extra = ["default", "dataframe", "database"]
|
2022-03-08 20:05:58 -06:00
|
|
|
wasi = []
|
2021-12-07 14:06:34 -06:00
|
|
|
|
|
|
|
# Stable (Default)
|
2022-03-30 11:37:31 -07:00
|
|
|
which-support = ["nu-command/which-support"]
|
2022-03-10 07:37:24 -06:00
|
|
|
trash-support = ["nu-command/trash-support"]
|
2022-01-20 13:02:53 -05:00
|
|
|
|
2021-12-07 14:06:34 -06:00
|
|
|
# Extra
|
2021-12-09 22:16:35 -03:00
|
|
|
|
2021-12-07 14:06:34 -06:00
|
|
|
# Dataframe feature for nushell
|
|
|
|
dataframe = ["nu-command/dataframe"]
|
|
|
|
|
2022-04-24 10:29:21 +01:00
|
|
|
# Database commands for nushell
|
|
|
|
database = ["nu-command/database"]
|
|
|
|
|
2021-12-07 14:06:34 -06:00
|
|
|
[profile.release]
|
|
|
|
opt-level = "s" # Optimize for size
|
2022-02-28 13:13:24 +01:00
|
|
|
strip = "debuginfo"
|
2022-03-10 07:37:24 -06:00
|
|
|
lto = "thin"
|
2022-02-28 13:13:24 +01:00
|
|
|
|
2022-03-16 17:21:06 -05:00
|
|
|
# build with `cargo build --profile profiling`
|
2022-02-28 13:13:24 +01:00
|
|
|
# to analyze performance with tooling like linux perf
|
|
|
|
[profile.profiling]
|
|
|
|
inherits = "release"
|
|
|
|
strip = false
|
|
|
|
debug = true
|
2021-12-07 14:06:34 -06:00
|
|
|
|
2019-12-10 13:05:40 +13:00
|
|
|
# Main nu binary
|
2019-06-27 16:56:48 +12:00
|
|
|
[[bin]]
|
|
|
|
name = "nu"
|
|
|
|
path = "src/main.rs"
|