nushell/Cargo.toml

125 lines
3.6 KiB
TOML
Raw Normal View History

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"
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",
"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",
"crates/nu_plugin_gstat",
"crates/nu_plugin_example",
"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]
chrono = "0.4.19"
2021-11-09 07:47:22 +01:00
crossterm = "0.22.*"
crossterm_winapi = "0.9.0"
ctrlc = "3.2.1"
# lazy_static = "1.4.0"
log = "0.4"
miette = "3.0.0"
nu-ansi-term = "0.42.0"
2022-02-07 20:54:06 +01:00
nu-cli = { path="./crates/nu-cli", version = "0.59.0" }
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" }
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"
rayon = "1.5.1"
reedline = { git = "https://github.com/nushell/reedline", branch = "main" }
2021-07-30 22:02:16 +02:00
# mimalloc = { version = "*", default-features = false }
# 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 }
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]
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"
serial_test = "0.5.1"
hamcrest2 = "0.3.0"
rstest = "0.12.0"
itertools = "0.10.3"
[features]
plugin = ["nu-plugin", "nu-parser/plugin", "nu-command/plugin", "nu-protocol/plugin", "nu-engine/plugin"]
default = ["plugin", "inc", "example", "which"]
stable = ["default"]
extra = [ "default", "dataframe", "gstat", "zip-support", "query", ]
wasi = ["inc"]
trash-support = ["nu-command/trash-support"]
# Stable (Default)
inc = ["nu_plugin_inc"]
example = ["nu_plugin_example"]
which = ["nu-command/which"]
# Extra
gstat = ["nu_plugin_gstat"]
zip-support = ["nu-command/zip"]
query = ["nu_plugin_query"]
# Dataframe feature for nushell
dataframe = ["nu-command/dataframe"]
[profile.release]
opt-level = "s" # Optimize for size
# Build plugins
[[bin]]
name = "nu_plugin_inc"
path = "src/plugins/nu_plugin_core_inc.rs"
2019-12-10 01:59:13 +01:00
required-features = ["inc"]
[[bin]]
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"]
[[bin]]
name = "nu_plugin_query"
path = "src/plugins/nu_plugin_extra_query.rs"
required-features = ["query"]
# Main nu binary
2019-06-27 06:56:48 +02:00
[[bin]]
name = "nu"
path = "src/main.rs"