nushell/Cargo.toml

172 lines
5.5 KiB
TOML
Raw Normal View History

2019-05-10 16:59:12 +00:00
[package]
2020-03-15 17:12:28 +00:00
authors = ["The Nu Project Contributors"]
2020-07-05 20:12:44 +00:00
default-run = "nu"
description = "A new type of shell"
2020-07-05 20:12:44 +00:00
documentation = "https://www.nushell.sh/book/"
2019-05-10 16:59:12 +00:00
edition = "2018"
2020-07-05 20:12:44 +00:00
exclude = ["images"]
homepage = "https://www.nushell.sh"
license = "MIT"
name = "nu"
2019-07-16 19:17:46 +00:00
readme = "README.md"
repository = "https://github.com/nushell/nushell"
version = "0.18.2"
2019-05-10 16:59:12 +00:00
2019-12-18 17:58:23 +00:00
[workspace]
members = ["crates/*/"]
2019-05-10 16:59:12 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
nu-cli = {version = "0.18.2", path = "./crates/nu-cli"}
nu-errors = {version = "0.18.2", path = "./crates/nu-errors"}
nu-parser = {version = "0.18.2", path = "./crates/nu-parser"}
nu-plugin = {version = "0.18.2", path = "./crates/nu-plugin"}
nu-protocol = {version = "0.18.2", path = "./crates/nu-protocol"}
nu-source = {version = "0.18.2", path = "./crates/nu-source"}
nu-value-ext = {version = "0.18.2", path = "./crates/nu-value-ext"}
nu_plugin_binaryview = {version = "0.18.2", path = "./crates/nu_plugin_binaryview", optional = true}
nu_plugin_fetch = {version = "0.18.2", path = "./crates/nu_plugin_fetch", optional = true}
nu_plugin_from_bson = {version = "0.18.2", path = "./crates/nu_plugin_from_bson", optional = true}
nu_plugin_from_sqlite = {version = "0.18.2", path = "./crates/nu_plugin_from_sqlite", optional = true}
nu_plugin_inc = {version = "0.18.2", path = "./crates/nu_plugin_inc", optional = true}
nu_plugin_match = {version = "0.18.2", path = "./crates/nu_plugin_match", optional = true}
nu_plugin_post = {version = "0.18.2", path = "./crates/nu_plugin_post", optional = true}
nu_plugin_ps = {version = "0.18.2", path = "./crates/nu_plugin_ps", optional = true}
nu_plugin_start = {version = "0.18.2", path = "./crates/nu_plugin_start", optional = true}
nu_plugin_sys = {version = "0.18.2", path = "./crates/nu_plugin_sys", optional = true}
nu_plugin_textview = {version = "0.18.2", path = "./crates/nu_plugin_textview", optional = true}
nu_plugin_to_bson = {version = "0.18.2", path = "./crates/nu_plugin_to_bson", optional = true}
nu_plugin_to_sqlite = {version = "0.18.2", path = "./crates/nu_plugin_to_sqlite", optional = true}
nu_plugin_tree = {version = "0.18.2", path = "./crates/nu_plugin_tree", optional = true}
nu_plugin_s3 = { version = "0.18.2", path = "./crates/nu_plugin_s3", optional=true }
Add Range and start Signature support This commit contains two improvements: - Support for a Range syntax (and a corresponding Range value) - Work towards a signature syntax Implementing the Range syntax resulted in cleaning up how operators in the core syntax works. There are now two kinds of infix operators - tight operators (`.` and `..`) - loose operators Tight operators may not be interspersed (`$it.left..$it.right` is a syntax error). Loose operators require whitespace on both sides of the operator, and can be arbitrarily interspersed. Precedence is left to right in the core syntax. Note that delimited syntax (like `( ... )` or `[ ... ]`) is a single token node in the core syntax. A single token node can be parsed from beginning to end in a context-free manner. The rule for `.` is `<token node>.<member>`. The rule for `..` is `<token node>..<token node>`. Loose operators all have the same syntactic rule: `<token node><space><loose op><space><token node>`. The second aspect of this pull request is the beginning of support for a signature syntax. Before implementing signatures, a necessary prerequisite is for the core syntax to support multi-line programs. That work establishes a few things: - `;` and newlines are handled in the core grammar, and both count as "separators" - line comments begin with `#` and continue until the end of the line In this commit, multi-token productions in the core grammar can use separators interchangably with spaces. However, I think we will ultimately want a different rule preventing separators from occurring before an infix operator, so that the end of a line is always unambiguous. This would avoid gratuitous differences between modules and repl usage. We already effectively have this rule, because otherwise `x<newline> | y` would be a single pipeline, but of course that wouldn't work.
2019-12-04 21:14:52 +00:00
2020-07-05 20:12:44 +00:00
crossterm = {version = "0.17.5", optional = true}
semver = {version = "0.10.0", optional = true}
syntect = {version = "4.2", default-features = false, features = ["default-fancy"], optional = true}
url = {version = "2.1.1", optional = true}
2020-05-16 22:34:10 +00:00
clap = "2.33.1"
2020-03-08 19:18:44 +00:00
ctrlc = "3.1.4"
2020-06-27 07:54:31 +00:00
dunce = "1.0.1"
2020-07-05 20:12:44 +00:00
futures = {version = "0.3", features = ["compat", "io-compat"]}
2019-08-07 17:49:11 +00:00
log = "0.4.8"
pretty_env_logger = "0.4.0"
quick-xml = "0.18.1"
2019-05-23 04:30:43 +00:00
[dev-dependencies]
nu-test-support = {version = "0.18.2", path = "./crates/nu-test-support"}
[build-dependencies]
2020-07-05 20:12:44 +00:00
serde = {version = "1.0.110", features = ["derive"]}
toml = "0.5.6"
2019-08-28 23:32:58 +00:00
[features]
default = [
"sys",
"ps",
"textview",
"inc",
"git-support",
"directories-support",
"ctrlc-support",
"which-support",
"ptree-support",
"term-support",
"uuid-support",
]
stable = ["default", "binaryview", "match", "tree", "post", "fetch", "clipboard-cli", "trash-support", "start", "bson", "sqlite", "s3"]
2019-12-19 17:18:06 +00:00
# Default
inc = ["semver", "nu_plugin_inc"]
2020-07-05 20:12:44 +00:00
ps = ["nu_plugin_ps"]
sys = ["nu_plugin_sys"]
textview = ["crossterm", "syntect", "url", "nu_plugin_textview"]
2019-12-19 17:18:06 +00:00
# Stable
2019-12-04 17:51:20 +00:00
binaryview = ["nu_plugin_binaryview"]
bson = ["nu_plugin_from_bson", "nu_plugin_to_bson"]
2019-12-19 17:18:06 +00:00
fetch = ["nu_plugin_fetch"]
match = ["nu_plugin_match"]
2019-12-19 17:18:06 +00:00
post = ["nu_plugin_post"]
sqlite = ["nu_plugin_from_sqlite", "nu_plugin_to_sqlite"]
2020-07-05 20:12:44 +00:00
start = ["nu_plugin_start"]
Add Range and start Signature support This commit contains two improvements: - Support for a Range syntax (and a corresponding Range value) - Work towards a signature syntax Implementing the Range syntax resulted in cleaning up how operators in the core syntax works. There are now two kinds of infix operators - tight operators (`.` and `..`) - loose operators Tight operators may not be interspersed (`$it.left..$it.right` is a syntax error). Loose operators require whitespace on both sides of the operator, and can be arbitrarily interspersed. Precedence is left to right in the core syntax. Note that delimited syntax (like `( ... )` or `[ ... ]`) is a single token node in the core syntax. A single token node can be parsed from beginning to end in a context-free manner. The rule for `.` is `<token node>.<member>`. The rule for `..` is `<token node>..<token node>`. Loose operators all have the same syntactic rule: `<token node><space><loose op><space><token node>`. The second aspect of this pull request is the beginning of support for a signature syntax. Before implementing signatures, a necessary prerequisite is for the core syntax to support multi-line programs. That work establishes a few things: - `;` and newlines are handled in the core grammar, and both count as "separators" - line comments begin with `#` and continue until the end of the line In this commit, multi-token productions in the core grammar can use separators interchangably with spaces. However, I think we will ultimately want a different rule preventing separators from occurring before an infix operator, so that the end of a line is always unambiguous. This would avoid gratuitous differences between modules and repl usage. We already effectively have this rule, because otherwise `x<newline> | y` would be a single pipeline, but of course that wouldn't work.
2019-12-04 21:14:52 +00:00
trace = ["nu-parser/trace"]
2019-12-19 17:18:06 +00:00
tree = ["nu_plugin_tree"]
s3 = ["nu_plugin_s3"]
2019-08-28 23:32:58 +00:00
clipboard-cli = ["nu-cli/clipboard-cli"]
ctrlc-support = ["nu-cli/ctrlc"]
directories-support = ["nu-cli/directories", "nu-cli/dirs"]
git-support = ["nu-cli/git2"]
ptree-support = ["nu-cli/ptree"]
term-support = ["nu-cli/term"]
2020-04-11 06:53:53 +00:00
trash-support = ["nu-cli/trash-support"]
uuid-support = ["nu-cli/uuid_crate"]
which-support = ["nu-cli/ichwh", "nu-cli/which"]
# Core plugins that ship with `cargo install nu` by default
# Currently, Cargo limits us to installing only one binary
# unless we use [[bin]], so we use this as a workaround
[[bin]]
name = "nu_plugin_core_textview"
path = "src/plugins/nu_plugin_core_textview.rs"
required-features = ["textview"]
2019-12-10 00:59:13 +00:00
[[bin]]
name = "nu_plugin_core_inc"
path = "src/plugins/nu_plugin_core_inc.rs"
2019-12-10 00:59:13 +00:00
required-features = ["inc"]
[[bin]]
name = "nu_plugin_core_ps"
path = "src/plugins/nu_plugin_core_ps.rs"
required-features = ["ps"]
[[bin]]
name = "nu_plugin_core_sys"
path = "src/plugins/nu_plugin_core_sys.rs"
required-features = ["sys"]
# Stable plugins
[[bin]]
name = "nu_plugin_stable_fetch"
path = "src/plugins/nu_plugin_stable_fetch.rs"
required-features = ["fetch"]
[[bin]]
name = "nu_plugin_stable_binaryview"
path = "src/plugins/nu_plugin_stable_binaryview.rs"
required-features = ["binaryview"]
[[bin]]
name = "nu_plugin_stable_match"
path = "src/plugins/nu_plugin_stable_match.rs"
required-features = ["match"]
[[bin]]
name = "nu_plugin_stable_post"
path = "src/plugins/nu_plugin_stable_post.rs"
required-features = ["post"]
[[bin]]
name = "nu_plugin_stable_tree"
path = "src/plugins/nu_plugin_stable_tree.rs"
required-features = ["tree"]
[[bin]]
name = "nu_plugin_stable_start"
path = "src/plugins/nu_plugin_stable_start.rs"
required-features = ["start"]
[[bin]]
name = "nu_plugin_stable_s3"
path = "src/plugins/nu_plugin_stable_s3.rs"
required-features = ["s3"]
# Main nu binary
2019-06-27 04:56:48 +00:00
[[bin]]
name = "nu"
path = "src/main.rs"