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"
|
2020-09-02 05:37:06 +02:00
|
|
|
version = "0.19.0"
|
2019-05-10 18:59:12 +02:00
|
|
|
|
2019-12-18 18:58:23 +01:00
|
|
|
[workspace]
|
2020-03-04 19:58:20 +01:00
|
|
|
members = ["crates/*/"]
|
2019-11-21 15:33:14 +01:00
|
|
|
|
2019-05-10 18:59:12 +02:00
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2020-09-02 05:37:06 +02:00
|
|
|
nu-cli = {version = "0.19.0", path = "./crates/nu-cli"}
|
|
|
|
nu-data = {version = "0.19.0", path = "./crates/nu-data"}
|
|
|
|
nu-errors = {version = "0.19.0", path = "./crates/nu-errors"}
|
|
|
|
nu-parser = {version = "0.19.0", path = "./crates/nu-parser"}
|
|
|
|
nu-plugin = {version = "0.19.0", path = "./crates/nu-plugin"}
|
|
|
|
nu-protocol = {version = "0.19.0", path = "./crates/nu-protocol"}
|
|
|
|
nu-source = {version = "0.19.0", path = "./crates/nu-source"}
|
|
|
|
nu-value-ext = {version = "0.19.0", path = "./crates/nu-value-ext"}
|
2020-08-04 00:47:19 +02:00
|
|
|
|
2020-09-02 05:37:06 +02:00
|
|
|
nu_plugin_binaryview = {version = "0.19.0", path = "./crates/nu_plugin_binaryview", optional = true}
|
|
|
|
nu_plugin_fetch = {version = "0.19.0", path = "./crates/nu_plugin_fetch", optional = true}
|
|
|
|
nu_plugin_from_bson = {version = "0.19.0", path = "./crates/nu_plugin_from_bson", optional = true}
|
|
|
|
nu_plugin_from_sqlite = {version = "0.19.0", path = "./crates/nu_plugin_from_sqlite", optional = true}
|
|
|
|
nu_plugin_inc = {version = "0.19.0", path = "./crates/nu_plugin_inc", optional = true}
|
|
|
|
nu_plugin_match = {version = "0.19.0", path = "./crates/nu_plugin_match", optional = true}
|
|
|
|
nu_plugin_post = {version = "0.19.0", path = "./crates/nu_plugin_post", optional = true}
|
|
|
|
nu_plugin_ps = {version = "0.19.0", path = "./crates/nu_plugin_ps", optional = true}
|
|
|
|
nu_plugin_s3 = {version = "0.19.0", path = "./crates/nu_plugin_s3", optional = true}
|
|
|
|
nu_plugin_start = {version = "0.19.0", path = "./crates/nu_plugin_start", optional = true}
|
|
|
|
nu_plugin_sys = {version = "0.19.0", path = "./crates/nu_plugin_sys", optional = true}
|
|
|
|
nu_plugin_textview = {version = "0.19.0", path = "./crates/nu_plugin_textview", optional = true}
|
|
|
|
nu_plugin_to_bson = {version = "0.19.0", path = "./crates/nu_plugin_to_bson", optional = true}
|
|
|
|
nu_plugin_to_sqlite = {version = "0.19.0", path = "./crates/nu_plugin_to_sqlite", optional = true}
|
|
|
|
nu_plugin_tree = {version = "0.19.0", path = "./crates/nu_plugin_tree", optional = true}
|
2019-12-04 22:14:52 +01:00
|
|
|
|
2020-09-09 00:35:45 +02:00
|
|
|
crossterm = { version = "0.17.8", optional = true }
|
|
|
|
semver = { version = "0.10.0", optional = true }
|
|
|
|
url = { version = "2.1.1", optional = true }
|
2020-03-04 19:58:20 +01:00
|
|
|
|
2020-09-09 00:35:45 +02:00
|
|
|
clap = "2.33.3"
|
|
|
|
ctrlc = "3.1.6"
|
2020-06-27 09:54:31 +02:00
|
|
|
dunce = "1.0.1"
|
2020-09-09 00:35:45 +02:00
|
|
|
futures = { version = "0.3.5", features = ["compat", "io-compat"] }
|
|
|
|
log = "0.4.11"
|
2020-02-10 07:55:07 +01:00
|
|
|
pretty_env_logger = "0.4.0"
|
2020-07-24 09:41:22 +02:00
|
|
|
quick-xml = "0.18.1"
|
2019-05-23 06:30:43 +02:00
|
|
|
|
2020-03-04 19:58:20 +01:00
|
|
|
[dev-dependencies]
|
2020-09-02 05:37:06 +02:00
|
|
|
nu-test-support = {version = "0.19.0", path = "./crates/nu-test-support"}
|
2019-10-08 15:47:30 +02:00
|
|
|
|
2020-03-04 19:58:20 +01:00
|
|
|
[build-dependencies]
|
2020-09-09 00:35:45 +02:00
|
|
|
serde = { version = "1.0.115", features = ["derive"] }
|
2020-03-04 19:58:20 +01:00
|
|
|
toml = "0.5.6"
|
2020-01-11 21:49:20 +01:00
|
|
|
|
2019-08-29 01:32:58 +02:00
|
|
|
[features]
|
2020-07-18 03:59:23 +02:00
|
|
|
default = [
|
|
|
|
"sys",
|
|
|
|
"ps",
|
|
|
|
"textview",
|
|
|
|
"inc",
|
|
|
|
"git-support",
|
|
|
|
"directories-support",
|
|
|
|
"ctrlc-support",
|
|
|
|
"which-support",
|
|
|
|
"ptree-support",
|
|
|
|
"term-support",
|
|
|
|
"uuid-support",
|
2020-08-14 06:45:27 +02:00
|
|
|
"match",
|
|
|
|
"post",
|
2020-09-02 05:37:06 +02:00
|
|
|
"fetch",
|
2020-07-18 03:59:23 +02:00
|
|
|
]
|
2020-08-14 06:45:27 +02:00
|
|
|
extra = ["default", "binaryview", "tree", "clipboard-cli", "trash-support", "start", "bson", "sqlite", "s3"]
|
2020-09-02 05:37:06 +02:00
|
|
|
stable = ["default"]
|
2020-01-13 07:17:56 +01:00
|
|
|
|
2019-12-19 18:18:06 +01:00
|
|
|
# Default
|
2020-01-31 23:45:33 +01:00
|
|
|
inc = ["semver", "nu_plugin_inc"]
|
2020-07-05 22:12:44 +02:00
|
|
|
ps = ["nu_plugin_ps"]
|
|
|
|
sys = ["nu_plugin_sys"]
|
2020-08-13 22:33:35 +02:00
|
|
|
textview = ["crossterm", "url", "nu_plugin_textview"]
|
2019-12-10 01:05:40 +01:00
|
|
|
|
2019-12-19 18:18:06 +01:00
|
|
|
# Stable
|
2019-12-04 18:51:20 +01:00
|
|
|
binaryview = ["nu_plugin_binaryview"]
|
2020-07-18 03:59:23 +02:00
|
|
|
bson = ["nu_plugin_from_bson", "nu_plugin_to_bson"]
|
2019-12-19 18:18:06 +01:00
|
|
|
fetch = ["nu_plugin_fetch"]
|
2019-12-09 19:39:51 +01:00
|
|
|
match = ["nu_plugin_match"]
|
2019-12-19 18:18:06 +01:00
|
|
|
post = ["nu_plugin_post"]
|
2020-09-02 05:37:06 +02:00
|
|
|
s3 = ["nu_plugin_s3"]
|
2020-07-18 03:59:23 +02:00
|
|
|
sqlite = ["nu_plugin_from_sqlite", "nu_plugin_to_sqlite"]
|
2020-07-05 22:12:44 +02:00
|
|
|
start = ["nu_plugin_start"]
|
2019-12-04 22:14:52 +01:00
|
|
|
trace = ["nu-parser/trace"]
|
2019-12-19 18:18:06 +01:00
|
|
|
tree = ["nu_plugin_tree"]
|
2019-08-29 01:32:58 +02:00
|
|
|
|
2020-03-04 21:31:12 +01:00
|
|
|
clipboard-cli = ["nu-cli/clipboard-cli"]
|
2020-07-18 03:59:23 +02:00
|
|
|
ctrlc-support = ["nu-cli/ctrlc"]
|
2020-08-18 09:00:02 +02:00
|
|
|
directories-support = ["nu-cli/directories", "nu-cli/dirs", "nu-data/directories", "nu-data/dirs"]
|
2020-07-18 03:59:23 +02:00
|
|
|
git-support = ["nu-cli/git2"]
|
|
|
|
ptree-support = ["nu-cli/ptree"]
|
|
|
|
term-support = ["nu-cli/term"]
|
2020-04-11 08:53:53 +02:00
|
|
|
trash-support = ["nu-cli/trash-support"]
|
2020-07-18 03:59:23 +02:00
|
|
|
uuid-support = ["nu-cli/uuid_crate"]
|
|
|
|
which-support = ["nu-cli/ichwh", "nu-cli/which"]
|
2020-03-04 21:31:12 +01:00
|
|
|
|
2019-12-10 01:05:40 +01:00
|
|
|
# Core plugins that ship with `cargo install nu` by default
|
2019-12-10 04:57:55 +01:00
|
|
|
# Currently, Cargo limits us to installing only one binary
|
|
|
|
# unless we use [[bin]], so we use this as a workaround
|
2019-12-10 01:05:40 +01:00
|
|
|
[[bin]]
|
2019-12-10 04:57:55 +01:00
|
|
|
name = "nu_plugin_core_textview"
|
2019-12-18 17:35:17 +01:00
|
|
|
path = "src/plugins/nu_plugin_core_textview.rs"
|
2019-12-10 01:05:40 +01:00
|
|
|
required-features = ["textview"]
|
|
|
|
|
2019-12-10 01:59:13 +01:00
|
|
|
[[bin]]
|
2019-12-10 04:57:55 +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"]
|
|
|
|
|
2019-12-10 01:05:40 +01:00
|
|
|
[[bin]]
|
2019-12-10 04:57:55 +01:00
|
|
|
name = "nu_plugin_core_ps"
|
2019-12-18 17:35:17 +01:00
|
|
|
path = "src/plugins/nu_plugin_core_ps.rs"
|
2019-12-10 01:05:40 +01:00
|
|
|
required-features = ["ps"]
|
|
|
|
|
|
|
|
[[bin]]
|
2019-12-10 04:57:55 +01:00
|
|
|
name = "nu_plugin_core_sys"
|
2019-12-18 17:35:17 +01:00
|
|
|
path = "src/plugins/nu_plugin_core_sys.rs"
|
2019-12-10 01:05:40 +01:00
|
|
|
required-features = ["sys"]
|
|
|
|
|
2020-02-10 21:32:10 +01:00
|
|
|
[[bin]]
|
2020-08-14 06:45:27 +02:00
|
|
|
name = "nu_plugin_core_fetch"
|
|
|
|
path = "src/plugins/nu_plugin_core_fetch.rs"
|
2020-02-10 21:32:10 +01:00
|
|
|
required-features = ["fetch"]
|
|
|
|
|
|
|
|
[[bin]]
|
2020-08-14 06:45:27 +02:00
|
|
|
name = "nu_plugin_core_match"
|
|
|
|
path = "src/plugins/nu_plugin_core_match.rs"
|
2020-02-10 21:32:10 +01:00
|
|
|
required-features = ["match"]
|
|
|
|
|
|
|
|
[[bin]]
|
2020-08-14 06:45:27 +02:00
|
|
|
name = "nu_plugin_core_post"
|
|
|
|
path = "src/plugins/nu_plugin_core_post.rs"
|
2020-02-10 21:32:10 +01:00
|
|
|
required-features = ["post"]
|
|
|
|
|
2020-08-14 06:45:27 +02:00
|
|
|
# Extra plugins
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "nu_plugin_extra_binaryview"
|
|
|
|
path = "src/plugins/nu_plugin_extra_binaryview.rs"
|
|
|
|
required-features = ["binaryview"]
|
|
|
|
|
2020-02-10 21:32:10 +01:00
|
|
|
[[bin]]
|
2020-08-14 06:45:27 +02:00
|
|
|
name = "nu_plugin_extra_tree"
|
|
|
|
path = "src/plugins/nu_plugin_extra_tree.rs"
|
2020-02-10 21:32:10 +01:00
|
|
|
required-features = ["tree"]
|
|
|
|
|
2020-05-09 19:28:57 +02:00
|
|
|
[[bin]]
|
2020-08-14 06:45:27 +02:00
|
|
|
name = "nu_plugin_extra_start"
|
|
|
|
path = "src/plugins/nu_plugin_extra_start.rs"
|
2020-05-09 19:28:57 +02:00
|
|
|
required-features = ["start"]
|
|
|
|
|
2020-08-12 19:20:22 +02:00
|
|
|
[[bin]]
|
2020-08-14 06:45:27 +02:00
|
|
|
name = "nu_plugin_extra_s3"
|
|
|
|
path = "src/plugins/nu_plugin_extra_s3.rs"
|
2020-08-12 19:20:22 +02:00
|
|
|
required-features = ["s3"]
|
|
|
|
|
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"
|