nushell/Cargo.toml

170 lines
4 KiB
TOML
Raw Normal View History

2019-05-10 16:59:12 +00:00
[package]
2019-05-16 23:39:58 +00:00
name = "nu"
2019-09-24 07:29:23 +00:00
version = "0.3.0"
2019-08-23 05:36:52 +00:00
authors = ["Yehuda Katz <wycats@gmail.com>", "Jonathan Turner <jonathan.d.turner@gmail.com>", "Andrés N. Robalino <andres@androbtech.com>"]
2019-05-16 21:46:24 +00:00
description = "A shell for the GitHub era"
2019-06-02 16:50:41 +00:00
license = "MIT"
2019-05-10 16:59:12 +00:00
edition = "2018"
2019-07-16 19:17:46 +00:00
readme = "README.md"
2019-06-27 04:56:48 +00:00
default-run = "nu"
2019-07-16 19:17:46 +00:00
repository = "https://github.com/nushell/nushell"
2019-08-23 05:28:30 +00:00
homepage = "http://nushell.sh"
documentation = "https://book.nushell.sh"
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]
2019-09-15 18:18:06 +00:00
rustyline = "5.0.3"
2019-09-13 03:44:21 +00:00
chrono = { version = "0.4.9", features = ["serde"] }
2019-08-31 21:19:59 +00:00
derive-new = "0.5.8"
2019-05-10 16:59:12 +00:00
prettytable-rs = "0.8.0"
itertools = "0.8.0"
2019-09-13 03:44:21 +00:00
ansi_term = "0.12.1"
2019-06-26 18:08:41 +00:00
nom = "5.0.0"
2019-05-11 07:00:33 +00:00
dunce = "1.0.0"
2019-09-13 03:44:21 +00:00
indexmap = { version = "1.2.0", features = ["serde-1"] }
chrono-humanize = "0.0.11"
2019-07-29 07:46:24 +00:00
byte-unit = "3.0.1"
2019-08-30 18:27:15 +00:00
base64 = "0.10.1"
futures-preview = { version = "=0.3.0-alpha.18", features = ["compat", "io-compat"] }
async-stream = "0.1.1"
2019-08-02 19:15:07 +00:00
futures_codec = "0.2.5"
num-traits = "0.2.8"
term = "0.5.2"
2019-05-25 19:07:52 +00:00
bytes = "0.4.12"
2019-08-07 17:49:11 +00:00
log = "0.4.8"
2019-08-23 03:29:08 +00:00
pretty_env_logger = "0.3.1"
2019-09-13 03:44:21 +00:00
serde = { version = "1.0.100", features = ["derive"] }
2019-08-31 14:22:45 +00:00
bson = { version = "0.14.0", features = ["decimal128"] }
2019-07-04 03:06:43 +00:00
serde_json = "1.0.40"
2019-08-23 03:29:08 +00:00
serde-hjson = "0.9.1"
2019-06-03 07:41:28 +00:00
serde_yaml = "0.8"
2019-08-10 05:02:15 +00:00
serde_bytes = "0.11.2"
getset = "0.0.8"
#language-reporting = "0.3.1"
language-reporting = { git = "https://github.com/wycats/language-reporting" }
app_dirs = "1.2.1"
csv = "1.1"
2019-08-23 03:29:08 +00:00
toml = "0.5.3"
clap = "2.33.0"
2019-09-13 03:44:21 +00:00
git2 = { version = "0.10.1", default_features = false }
2019-07-29 07:46:24 +00:00
dirs = "2.0.2"
glob = "0.3.0"
2019-06-07 00:31:22 +00:00
ctrlc = "3.1.3"
surf = "1.0.2"
2019-08-24 19:36:19 +00:00
url = "2.1.0"
2019-08-10 05:02:15 +00:00
roxmltree = "0.7.0"
nom_locate = "1.0.0"
2019-06-27 04:56:48 +00:00
enum-utils = "0.1.1"
2019-07-29 07:46:24 +00:00
unicode-xid = "0.2.0"
2019-06-16 06:43:40 +00:00
serde_ini = "0.2.0"
2019-06-18 02:04:34 +00:00
subprocess = "0.1.18"
2019-09-13 03:44:21 +00:00
mime = "0.3.14"
2019-07-04 05:23:05 +00:00
pretty-hex = "0.1.0"
2019-08-27 21:45:18 +00:00
hex = "0.3.2"
tempfile = "3.1.0"
semver = "0.9.0"
2019-08-10 06:31:31 +00:00
which = "2.0.1"
uuid = {version = "0.7.4", features = [ "v4", "serde" ]}
2019-08-16 05:47:47 +00:00
textwrap = {version = "0.11.0", features = ["term_size"]}
Add support for ~ expansion This ended up being a bit of a yak shave. The basic idea in this commit is to expand `~` in paths, but only in paths. The way this is accomplished is by doing the expansion inside of the code that parses literal syntax for `SyntaxType::Path`. As a quick refresher: every command is entitled to expand its arguments in a custom way. While this could in theory be used for general-purpose macros, today the expansion facility is limited to syntactic hints. For example, the syntax `where cpu > 0` expands under the hood to `where { $it.cpu > 0 }`. This happens because the first argument to `where` is defined as a `SyntaxType::Block`, and the parser coerces binary expressions whose left-hand-side looks like a member into a block when the command is expecting one. This is mildly more magical than what most programming languages would do, but we believe that it makes sense to allow commands to fine-tune the syntax because of the domain nushell is in (command-line shells). The syntactic expansions supported by this facility are relatively limited. For example, we don't allow `$it` to become a bare word, simply because the command asks for a string in the relevant position. That would quickly become more confusing than it's worth. This PR adds a new `SyntaxType` rule: `SyntaxType::Path`. When a command declares a parameter as a `SyntaxType::Path`, string literals and bare words passed as an argument to that parameter are processed using the path expansion rules. Right now, that only means that `~` is expanded into the home directory, but additional rules are possible in the future. By restricting this expansion to a syntactic expansion when passed as an argument to a command expecting a path, we avoid making `~` a generally reserved character. This will also allow us to give good tab completion for paths with `~` characters in them when a command is expecting a path. In order to accomplish the above, this commit changes the parsing functions to take a `Context` instead of just a `CommandRegistry`. From the perspective of macro expansion, you can think of the `CommandRegistry` as a dictionary of in-scope macros, and the `Context` as the compile-time state used in expansion. This could gain additional functionality over time as we find more uses for the expansion system.
2019-08-26 19:21:03 +00:00
shellexpand = "1.0.0"
2019-09-13 03:44:21 +00:00
futures-timer = "0.4.0"
2019-08-30 19:07:07 +00:00
pin-utils = "0.1.0-alpha.4"
2019-09-13 03:44:21 +00:00
num-bigint = { version = "0.2.3", features = ["serde"] }
bigdecimal = { version = "0.1.0", features = ["serde"] }
2019-09-13 03:44:21 +00:00
natural = "0.3.0"
2019-09-19 04:25:29 +00:00
serde_urlencoded = "0.6.1"
2019-09-16 20:48:22 +00:00
sublime_fuzzy = "0.5"
2019-05-23 04:30:43 +00:00
neso = { version = "0.5.0", optional = true }
crossterm = { version = "0.10.2", optional = true }
syntect = {version = "3.2.0", optional = true }
onig_sys = {version = "=69.1.0", optional = true }
heim = {version = "0.0.8-alpha.1", optional = true }
battery = {version = "0.7.4", optional = true }
rawkey = {version = "0.1.2", optional = true }
clipboard = {version = "0.5", optional = true }
ptree = {version = "0.2", optional = true }
2019-09-13 03:44:21 +00:00
image = { version = "0.22.2", default_features = false, features = ["png_codec", "jpeg"], optional = true }
2019-08-28 23:32:58 +00:00
[features]
default = ["textview", "sys", "ps"]
2019-08-28 23:32:58 +00:00
raw-key = ["rawkey", "neso"]
textview = ["syntect", "onig_sys", "crossterm"]
binaryview = ["image", "crossterm"]
sys = ["heim", "battery"]
ps = ["heim"]
2019-08-28 23:32:58 +00:00
2019-08-27 21:45:18 +00:00
[dependencies.rusqlite]
version = "0.20.0"
features = ["bundled", "blob"]
2019-05-29 15:26:45 +00:00
[dev-dependencies]
pretty_assertions = "0.6.1"
2019-06-27 04:56:48 +00:00
[lib]
name = "nu"
path = "src/lib.rs"
[[bin]]
name = "nu_plugin_inc"
path = "src/plugins/inc.rs"
2019-07-26 18:40:00 +00:00
[[bin]]
name = "nu_plugin_sum"
path = "src/plugins/sum.rs"
2019-09-02 05:37:13 +00:00
[[bin]]
name = "nu_plugin_embed"
path = "src/plugins/embed.rs"
2019-07-22 03:52:57 +00:00
[[bin]]
name = "nu_plugin_add"
path = "src/plugins/add.rs"
[[bin]]
name = "nu_plugin_edit"
path = "src/plugins/edit.rs"
2019-07-28 07:01:32 +00:00
[[bin]]
name = "nu_plugin_str"
path = "src/plugins/str.rs"
2019-07-03 17:37:09 +00:00
[[bin]]
name = "nu_plugin_skip"
path = "src/plugins/skip.rs"
2019-07-03 17:37:09 +00:00
[[bin]]
name = "nu_plugin_sys"
path = "src/plugins/sys.rs"
required-features = ["sys"]
[[bin]]
name = "nu_plugin_ps"
path = "src/plugins/ps.rs"
required-features = ["ps"]
2019-07-04 05:11:56 +00:00
[[bin]]
name = "nu_plugin_tree"
path = "src/plugins/tree.rs"
required-features = ["tree"]
2019-07-04 05:11:56 +00:00
2019-07-04 05:23:05 +00:00
[[bin]]
name = "nu_plugin_binaryview"
path = "src/plugins/binaryview.rs"
required-features = ["binaryview"]
2019-07-04 05:23:05 +00:00
2019-07-24 17:14:30 +00:00
[[bin]]
name = "nu_plugin_textview"
path = "src/plugins/textview.rs"
required-features = ["textview"]
2019-07-24 17:14:30 +00:00
[[bin]]
name = "nu_plugin_docker"
path = "src/plugins/docker.rs"
required-features = ["docker"]
2019-06-27 04:56:48 +00:00
[[bin]]
name = "nu"
path = "src/main.rs"