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/"
|
2023-01-05 13:24:42 +01:00
|
|
|
edition = "2021"
|
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
|
|
|
repository = "https://github.com/nushell/nushell"
|
2022-05-04 03:56:31 +02:00
|
|
|
rust-version = "1.60"
|
2023-01-31 23:55:29 +01:00
|
|
|
version = "0.75.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
|
|
|
|
|
2022-11-23 17:46:06 +01:00
|
|
|
[package.metadata.binstall]
|
|
|
|
pkg-url = "{ repo }/releases/download/{ version }/{ name }-{ version }-{ target }.{ archive-format }"
|
|
|
|
pkg-fmt = "tgz"
|
|
|
|
|
|
|
|
[package.metadata.binstall.overrides.x86_64-pc-windows-msvc]
|
|
|
|
pkg-fmt = "zip"
|
|
|
|
|
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-07-25 18:32:56 +02:00
|
|
|
"crates/nu_plugin_custom_values",
|
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-11-26 19:19:02 +01:00
|
|
|
chrono = { version = "0.4.23", features = ["serde"] }
|
2022-07-30 11:41:15 +02:00
|
|
|
crossterm = "0.24.0"
|
2022-02-09 23:08:16 +01:00
|
|
|
ctrlc = "3.2.1"
|
|
|
|
log = "0.4"
|
2023-01-23 02:56:28 +01:00
|
|
|
miette = { version = "5.5.0", features = ["fancy-no-backtrace"] }
|
2022-06-03 21:38:54 +02:00
|
|
|
nu-ansi-term = "0.46.0"
|
2023-01-31 23:55:29 +01:00
|
|
|
nu-cli = { path = "./crates/nu-cli", version = "0.75.1" }
|
|
|
|
nu-color-config = { path = "./crates/nu-color-config", version = "0.75.1" }
|
|
|
|
nu-command = { path = "./crates/nu-command", version = "0.75.1" }
|
|
|
|
nu-engine = { path = "./crates/nu-engine", version = "0.75.1" }
|
|
|
|
nu-json = { path = "./crates/nu-json", version = "0.75.1" }
|
|
|
|
nu-parser = { path = "./crates/nu-parser", version = "0.75.1" }
|
|
|
|
nu-path = { path = "./crates/nu-path", version = "0.75.1" }
|
|
|
|
nu-plugin = { path = "./crates/nu-plugin", optional = true, version = "0.75.1" }
|
|
|
|
nu-pretty-hex = { path = "./crates/nu-pretty-hex", version = "0.75.1" }
|
|
|
|
nu-protocol = { path = "./crates/nu-protocol", version = "0.75.1" }
|
|
|
|
nu-system = { path = "./crates/nu-system", version = "0.75.1" }
|
|
|
|
nu-table = { path = "./crates/nu-table", version = "0.75.1" }
|
|
|
|
nu-term-grid = { path = "./crates/nu-term-grid", version = "0.75.1" }
|
|
|
|
nu-utils = { path = "./crates/nu-utils", version = "0.75.1" }
|
2023-01-30 22:59:15 +01:00
|
|
|
reedline = { version = "0.15.0", features = ["bashisms", "sqlite"] }
|
2022-09-19 16:28:36 +02:00
|
|
|
|
2023-01-23 05:52:37 +01:00
|
|
|
rayon = "1.6.1"
|
2022-02-22 16:55:28 +01:00
|
|
|
is_executable = "1.0.1"
|
2022-08-09 18:44:37 +02:00
|
|
|
simplelog = "0.12.0"
|
|
|
|
time = "0.3.12"
|
2022-02-22 16:55:28 +01:00
|
|
|
|
2022-05-26 20:28:59 +02:00
|
|
|
[target.'cfg(not(target_os = "windows"))'.dependencies]
|
|
|
|
# Our dependencies don't use OpenSSL on Windows
|
|
|
|
openssl = { version = "0.10.38", features = ["vendored"], optional = true }
|
2022-06-09 14:08:15 +02:00
|
|
|
signal-hook = { version = "0.3.14", default-features = false }
|
2022-05-26 20:28:59 +02:00
|
|
|
|
2022-10-16 23:51:15 +02:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.build-dependencies]
|
|
|
|
winres = "0.1"
|
|
|
|
|
|
|
|
[target.'cfg(target_family = "unix")'.dependencies]
|
2023-01-23 19:57:40 +01:00
|
|
|
nix = { version = "0.25", default-features = false, features = ["signal", "process", "fs", "term"] }
|
2022-10-16 23:51:15 +02:00
|
|
|
atty = "0.2"
|
|
|
|
|
2021-07-30 22:02:16 +02:00
|
|
|
[dev-dependencies]
|
2023-01-31 23:55:29 +01:00
|
|
|
nu-test-support = { path = "./crates/nu-test-support", version = "0.75.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"
|
2023-01-05 20:39:54 +01:00
|
|
|
criterion = "0.4"
|
2021-12-16 10:40:05 +01:00
|
|
|
pretty_assertions = "1.0.0"
|
2023-01-30 03:47:51 +01:00
|
|
|
serial_test = "1.0.0"
|
2022-02-02 21:59:01 +01:00
|
|
|
hamcrest2 = "0.3.0"
|
2023-02-13 03:34:09 +01:00
|
|
|
rstest = { version = "0.16.0", default-features = false }
|
2022-02-02 21:59:01 +01:00
|
|
|
itertools = "0.10.3"
|
2021-12-07 21:06:34 +01:00
|
|
|
|
|
|
|
[features]
|
2023-01-23 19:57:40 +01:00
|
|
|
plugin = [
|
|
|
|
"nu-plugin",
|
|
|
|
"nu-cli/plugin",
|
|
|
|
"nu-parser/plugin",
|
|
|
|
"nu-command/plugin",
|
|
|
|
"nu-protocol/plugin",
|
|
|
|
"nu-engine/plugin",
|
|
|
|
]
|
2022-11-23 01:58:11 +01:00
|
|
|
# extra used to be more useful but now it's the same as default. Leaving it in for backcompat with existing build scripts
|
2022-11-21 18:24:25 +01:00
|
|
|
extra = ["default"]
|
2022-11-23 01:58:11 +01:00
|
|
|
default = ["plugin", "which-support", "trash-support", "sqlite"]
|
2021-12-07 21:06:34 +01:00
|
|
|
stable = ["default"]
|
2022-03-09 03:05:58 +01:00
|
|
|
wasi = []
|
2022-11-21 18:24:25 +01:00
|
|
|
|
2022-04-28 13:33:17 +02:00
|
|
|
# Enable to statically link OpenSSL; otherwise the system version will be used. Not enabled by default because it takes a while to build
|
|
|
|
static-link-openssl = ["dep:openssl"]
|
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"]
|
|
|
|
|
2022-11-23 01:58:11 +01:00
|
|
|
# SQLite commands for nushell
|
|
|
|
sqlite = ["nu-command/sqlite"]
|
2022-04-24 11:29:21 +02:00
|
|
|
|
2021-12-07 21:06:34 +01:00
|
|
|
[profile.release]
|
2023-01-23 19:57:40 +01:00
|
|
|
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
|
|
|
|
2022-05-16 06:02:11 +02:00
|
|
|
# build with `cargo build --profile ci`
|
|
|
|
# to analyze performance with tooling like linux perf
|
|
|
|
[profile.ci]
|
|
|
|
inherits = "dev"
|
|
|
|
strip = false
|
|
|
|
debug = false
|
|
|
|
|
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"
|
2023-02-12 23:22:00 +01:00
|
|
|
bench = false
|
2022-09-29 20:37:48 +02:00
|
|
|
|
2022-10-17 23:45:28 +02:00
|
|
|
# To use a development version of a dependency please use a global override here
|
|
|
|
# changing versions in each sub-crate of the workspace is tedious
|
2022-10-16 23:51:15 +02:00
|
|
|
[patch.crates-io]
|
2023-02-01 21:46:47 +01:00
|
|
|
reedline = { git = "https://github.com/nushell/reedline.git", branch = "main" }
|
2023-01-05 20:39:54 +01:00
|
|
|
|
|
|
|
# Criterion benchmarking setup
|
|
|
|
# Run all benchmarks with `cargo bench`
|
|
|
|
# Run individual benchmarks like `cargo bench -- <regex>` e.g. `cargo bench -- parse`
|
|
|
|
[[bench]]
|
2023-01-11 02:51:25 +01:00
|
|
|
name = "benchmarks"
|
2023-01-23 19:57:40 +01:00
|
|
|
harness = false
|