2019-05-10 18:59:12 +02:00
|
|
|
[package]
|
2019-05-17 01:39:58 +02:00
|
|
|
name = "nu"
|
2020-03-01 08:59:13 +01:00
|
|
|
version = "0.10.1"
|
2019-08-23 07:36:52 +02:00
|
|
|
authors = ["Yehuda Katz <wycats@gmail.com>", "Jonathan Turner <jonathan.d.turner@gmail.com>", "Andrés N. Robalino <andres@androbtech.com>"]
|
2019-05-16 23:46:24 +02:00
|
|
|
description = "A shell for the GitHub era"
|
2019-06-02 18:50:41 +02:00
|
|
|
license = "MIT"
|
2019-05-10 18:59:12 +02:00
|
|
|
edition = "2018"
|
2019-07-16 21:17:46 +02:00
|
|
|
readme = "README.md"
|
2019-06-27 06:56:48 +02:00
|
|
|
default-run = "nu"
|
2019-07-16 21:17:46 +02:00
|
|
|
repository = "https://github.com/nushell/nushell"
|
2019-09-29 21:03:51 +02:00
|
|
|
homepage = "https://www.nushell.sh"
|
2019-12-15 13:56:26 +01:00
|
|
|
documentation = "https://www.nushell.sh/book/"
|
2020-01-31 16:38:26 +01:00
|
|
|
exclude = ["images"]
|
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-03-04 19:58:20 +01:00
|
|
|
nu-cli = { version = "0.10.0", path = "./crates/nu-cli" }
|
2020-02-18 04:56:09 +01:00
|
|
|
nu-source = { version = "0.10.0", path = "./crates/nu-source" }
|
|
|
|
nu-plugin = { version = "0.10.0", path = "./crates/nu-plugin" }
|
|
|
|
nu-protocol = { version = "0.10.0", path = "./crates/nu-protocol" }
|
|
|
|
nu-errors = { version = "0.10.0", path = "./crates/nu-errors" }
|
|
|
|
nu-parser = { version = "0.10.0", path = "./crates/nu-parser" }
|
|
|
|
nu-value-ext = { version = "0.10.0", path = "./crates/nu-value-ext" }
|
|
|
|
nu_plugin_average = { version = "0.10.0", path = "./crates/nu_plugin_average", optional=true }
|
|
|
|
nu_plugin_binaryview = { version = "0.10.0", path = "./crates/nu_plugin_binaryview", optional=true }
|
|
|
|
nu_plugin_fetch = { version = "0.10.0", path = "./crates/nu_plugin_fetch", optional=true }
|
|
|
|
nu_plugin_inc = { version = "0.10.0", path = "./crates/nu_plugin_inc", optional=true }
|
|
|
|
nu_plugin_match = { version = "0.10.0", path = "./crates/nu_plugin_match", optional=true }
|
|
|
|
nu_plugin_post = { version = "0.10.0", path = "./crates/nu_plugin_post", optional=true }
|
|
|
|
nu_plugin_ps = { version = "0.10.0", path = "./crates/nu_plugin_ps", optional=true }
|
2020-03-02 20:44:12 +01:00
|
|
|
nu_plugin_shuffle = { version = "0.10.0", path = "./crates/nu_plugin_shuffle", optional=true }
|
2020-02-18 04:56:09 +01:00
|
|
|
nu_plugin_str = { version = "0.10.0", path = "./crates/nu_plugin_str", optional=true }
|
|
|
|
nu_plugin_sum = { version = "0.10.0", path = "./crates/nu_plugin_sum", optional=true }
|
|
|
|
nu_plugin_sys = { version = "0.10.0", path = "./crates/nu_plugin_sys", optional=true }
|
|
|
|
nu_plugin_textview = { version = "0.10.0", path = "./crates/nu_plugin_textview", optional=true }
|
|
|
|
nu_plugin_tree = { version = "0.10.0", path = "./crates/nu_plugin_tree", optional=true }
|
|
|
|
nu-macros = { version = "0.10.0", path = "./crates/nu-macros" }
|
2019-12-04 22:14:52 +01:00
|
|
|
|
2020-03-04 19:58:20 +01:00
|
|
|
crossterm = { version = "0.16.0", optional = true }
|
|
|
|
onig_sys = { version = "=69.1.0", optional = true }
|
|
|
|
semver = { version = "0.9.0", optional = true }
|
|
|
|
syntect = { version = "3.2.0", optional = true }
|
|
|
|
url = { version = "2.1.1", optional = true }
|
|
|
|
|
|
|
|
clap = "2.33.0"
|
|
|
|
ctrlc = "3.1.3"
|
2019-05-11 09:00:33 +02:00
|
|
|
dunce = "1.0.0"
|
Futures v0.3 upgrade (#1344)
* Upgrade futures, async-stream, and futures_codec
These were the last three dependencies on futures-preview. `nu` itself
is now fully dependent on `futures@0.3`, as opposed to `futures-preview`
alpha.
Because the update to `futures` from `0.3.0-alpha.19` to `0.3.0` removed
the `Stream` implementation of `VecDeque` ([changelog][changelog]), most
commands that convert a `VecDeque` to an `OutputStream` broke and had to
be fixed.
The current solution is to now convert `VecDeque`s to a `Stream` via
`futures::stream::iter`. However, it may be useful for `futures` to
create an `IntoStream` trait, implemented on the `std::collections` (or
really any `IntoIterator`). If something like this happends, it may be
worthwhile to update the trait implementations on `OutputStream` and
refactor these commands again.
While upgrading `futures_codec`, we remove a custom implementation of
`LinesCodec`, as one has been added to the library. There's also a small
refactor to make the stream output more idiomatic.
[changelog]: https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md#030---2019-11-5
* Upgrade sys & ps plugin dependencies
They were previously dependent on `futures-preview`, and `nu_plugin_ps`
was dependent on an old version of `futures-timer`.
* Remove dependency on futures-timer from nu
* Update Cargo.lock
* Fix formatting
* Revert fmt regressions
CI is still on 1.40.0, but the latest rustfmt v1.41.0 has changes to the
`val @ pattern` syntax, causing the linting job to fail.
* Fix clippy warnings
2020-02-06 04:46:48 +01:00
|
|
|
futures = { version = "0.3", features = ["compat", "io-compat"] }
|
2019-08-07 19:49:11 +02:00
|
|
|
log = "0.4.8"
|
2020-02-10 07:55:07 +01:00
|
|
|
pretty_env_logger = "0.4.0"
|
2019-05-23 06:30:43 +02:00
|
|
|
|
2020-03-04 19:58:20 +01:00
|
|
|
[dev-dependencies]
|
|
|
|
pretty_assertions = "0.6.1"
|
|
|
|
nu-test-support = { version = "0.10.0", path = "./crates/nu-test-support" }
|
2019-10-08 15:47:30 +02:00
|
|
|
|
2020-03-04 19:58:20 +01:00
|
|
|
[build-dependencies]
|
|
|
|
toml = "0.5.6"
|
|
|
|
serde = { version = "1.0.104", features = ["derive"] }
|
|
|
|
nu-build = { version = "0.10.0", path = "./crates/nu-build" }
|
2020-01-11 21:49:20 +01:00
|
|
|
|
2019-08-29 01:32:58 +02:00
|
|
|
[features]
|
2020-01-22 04:00:27 +01:00
|
|
|
# Test executables
|
|
|
|
test-bins = []
|
2020-01-12 22:44:22 +01:00
|
|
|
|
2020-01-22 04:00:27 +01:00
|
|
|
default = ["sys", "ps", "textview", "inc", "str"]
|
2020-03-04 21:31:12 +01:00
|
|
|
stable = ["default", "starship-prompt", "binaryview", "match", "tree", "average", "shuffle", "sum", "post", "fetch", "clipboard-cli"]
|
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
|
|
|
textview = ["crossterm", "syntect", "onig_sys", "url", "nu_plugin_textview"]
|
2020-02-04 07:51:14 +01:00
|
|
|
sys = ["nu_plugin_sys"]
|
|
|
|
ps = ["nu_plugin_ps"]
|
2020-01-31 23:45:33 +01:00
|
|
|
inc = ["semver", "nu_plugin_inc"]
|
2019-12-27 14:30:14 +01:00
|
|
|
str = ["nu_plugin_str"]
|
2019-12-10 01:05:40 +01:00
|
|
|
|
2019-12-19 18:18:06 +01:00
|
|
|
# Stable
|
|
|
|
average = ["nu_plugin_average"]
|
2019-12-04 18:51:20 +01:00
|
|
|
binaryview = ["nu_plugin_binaryview"]
|
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-03-02 20:44:12 +01:00
|
|
|
shuffle = ["nu_plugin_shuffle"]
|
2019-12-09 19:39:51 +01:00
|
|
|
sum = ["nu_plugin_sum"]
|
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"]
|
|
|
|
starship-prompt = ["nu-cli/starship-prompt"]
|
|
|
|
|
2020-01-12 22:44:22 +01:00
|
|
|
[[bin]]
|
|
|
|
name = "fail"
|
2020-01-22 04:00:27 +01:00
|
|
|
path = "crates/nu-test-support/src/bins/fail.rs"
|
|
|
|
required-features = ["test-bins"]
|
2020-01-12 22:44:22 +01:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "chop"
|
2020-01-22 04:00:27 +01:00
|
|
|
path = "crates/nu-test-support/src/bins/chop.rs"
|
|
|
|
required-features = ["test-bins"]
|
2020-01-12 22:44:22 +01:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "cococo"
|
2020-01-22 04:00:27 +01:00
|
|
|
path = "crates/nu-test-support/src/bins/cococo.rs"
|
|
|
|
required-features = ["test-bins"]
|
2020-01-12 22:44:22 +01:00
|
|
|
|
2020-02-10 16:37:48 +01:00
|
|
|
[[bin]]
|
|
|
|
name = "nonu"
|
|
|
|
path = "crates/nu-test-support/src/bins/nonu.rs"
|
|
|
|
required-features = ["test-bins"]
|
|
|
|
|
2020-03-01 18:19:09 +01:00
|
|
|
[[bin]]
|
|
|
|
name = "iecho"
|
|
|
|
path = "crates/nu-test-support/src/bins/iecho.rs"
|
|
|
|
required-features = ["test-bins"]
|
|
|
|
|
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"]
|
|
|
|
|
2019-12-10 01:59:13 +01:00
|
|
|
[[bin]]
|
2019-12-10 04:57:55 +01:00
|
|
|
name = "nu_plugin_core_str"
|
2019-12-18 17:35:17 +01:00
|
|
|
path = "src/plugins/nu_plugin_core_str.rs"
|
2019-12-10 01:59:13 +01:00
|
|
|
required-features = ["str"]
|
|
|
|
|
2019-12-10 01:05:40 +01:00
|
|
|
[[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
|
|
|
# Stable plugins
|
|
|
|
[[bin]]
|
|
|
|
name = "nu_plugin_stable_average"
|
|
|
|
path = "src/plugins/nu_plugin_stable_average.rs"
|
|
|
|
required-features = ["average"]
|
|
|
|
|
|
|
|
[[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"]
|
|
|
|
|
2020-03-02 20:44:12 +01:00
|
|
|
[[bin]]
|
|
|
|
name = "nu_plugin_stable_shuffle"
|
|
|
|
path = "src/plugins/nu_plugin_stable_shuffle.rs"
|
|
|
|
required-features = ["shuffle"]
|
|
|
|
|
2020-02-10 21:32:10 +01:00
|
|
|
[[bin]]
|
|
|
|
name = "nu_plugin_stable_sum"
|
|
|
|
path = "src/plugins/nu_plugin_stable_sum.rs"
|
|
|
|
required-features = ["sum"]
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "nu_plugin_stable_tree"
|
|
|
|
path = "src/plugins/nu_plugin_stable_tree.rs"
|
|
|
|
required-features = ["tree"]
|
|
|
|
|
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"
|