2019-05-10 18:59:12 +02:00
|
|
|
[package]
|
2022-03-13 19:30:27 +01:00
|
|
|
authors = ["The Nushell Project Developers"]
|
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-03-24 20:08:34 +01:00
|
|
|
rust-version = "1.59"
|
2022-04-15 23:29:30 +02:00
|
|
|
version = "0.61.1"
|
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",
|
2022-03-16 23:21:06 +01:00
|
|
|
"crates/nu-utils",
|
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-03-01 13:05:46 +01:00
|
|
|
crossterm = "0.23.0"
|
2022-02-09 23:08:16 +01:00
|
|
|
ctrlc = "3.2.1"
|
|
|
|
log = "0.4"
|
2022-04-18 14:34:10 +02:00
|
|
|
miette = "4.5.0"
|
2022-03-27 15:01:04 +02:00
|
|
|
nu-ansi-term = "0.45.1"
|
2022-04-15 23:29:30 +02: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-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-04-20 11:10:33 +02:00
|
|
|
reedline = { git = "https://github.com/nushell/reedline", branch = "main", features = ["bashisms"]}
|
2022-02-22 16:55:28 +01:00
|
|
|
is_executable = "1.0.1"
|
|
|
|
|
2021-07-30 22:02:16 +02:00
|
|
|
[dev-dependencies]
|
2022-04-15 23:29:30 +02:00
|
|
|
nu-test-support = { path="./crates/nu-test-support", version = "0.61.1" }
|
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
|
|
|
|
2022-03-05 22:56:23 +01:00
|
|
|
[target.'cfg(windows)'.build-dependencies]
|
|
|
|
embed-resource = "1"
|
|
|
|
|
2021-12-07 21:06:34 +01:00
|
|
|
[features]
|
2022-03-16 19:17:06 +01:00
|
|
|
plugin = ["nu-plugin", "nu-cli/plugin", "nu-parser/plugin", "nu-command/plugin", "nu-protocol/plugin", "nu-engine/plugin"]
|
2022-04-20 15:50:14 +02:00
|
|
|
default = ["plugin", "which-support", "trash-support"]
|
2021-12-07 21:06:34 +01:00
|
|
|
stable = ["default"]
|
2022-03-10 14:37:24 +01:00
|
|
|
extra = ["default", "dataframe"]
|
2022-03-09 03:05:58 +01:00
|
|
|
wasi = []
|
2021-12-07 21:06:34 +01:00
|
|
|
|
|
|
|
# Stable (Default)
|
2022-03-30 20:37:31 +02:00
|
|
|
which-support = ["nu-command/which-support"]
|
2022-03-10 14:37:24 +01:00
|
|
|
trash-support = ["nu-command/trash-support"]
|
2022-01-20 19:02:53 +01:00
|
|
|
|
2021-12-07 21:06:34 +01:00
|
|
|
# Extra
|
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"
|
2022-03-10 14:37:24 +01:00
|
|
|
lto = "thin"
|
2022-02-28 13:13:24 +01:00
|
|
|
|
2022-03-16 23:21:06 +01: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 21:06:34 +01: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"
|