nushell/Cargo.toml

132 lines
2.9 KiB
TOML
Raw Normal View History

2019-05-10 18:59:12 +02:00
[package]
2019-05-17 01:39:58 +02:00
name = "nu"
2019-08-23 07:28:30 +02:00
version = "0.2.0"
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-08-23 07:28:30 +02:00
homepage = "http://nushell.sh"
documentation = "https://book.nushell.sh"
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]
2019-08-21 08:39:57 +02:00
rustyline = "5.0.2"
2019-08-11 03:41:21 +02:00
sysinfo = "0.9"
2019-06-27 06:56:48 +02:00
chrono = { version = "0.4.7", features = ["serde"] }
2019-07-15 20:34:44 +02:00
derive-new = "0.5.7"
2019-05-10 18:59:12 +02:00
prettytable-rs = "0.8.0"
itertools = "0.8.0"
2019-07-15 20:34:44 +02:00
ansi_term = "0.12.0"
2019-06-26 20:08:41 +02:00
nom = "5.0.0"
2019-05-11 09:00:33 +02:00
dunce = "1.0.0"
indexmap = { version = "1.0.2", features = ["serde-1"] }
chrono-humanize = "0.0.11"
2019-07-29 09:46:24 +02:00
byte-unit = "3.0.1"
2019-06-30 08:46:49 +02:00
ordered-float = {version = "1.0.2", features = ["serde"]}
2019-06-19 06:53:55 +02:00
prettyprint = "0.7.0"
2019-08-24 21:36:19 +02:00
futures-preview = { version = "=0.3.0-alpha.17", features = ["compat", "io-compat"] }
futures-sink-preview = "=0.3.0-alpha.17"
futures-async-stream = "=0.1.0-alpha.2"
2019-08-02 21:15:07 +02:00
futures_codec = "0.2.5"
term = "0.5.2"
2019-05-25 21:07:52 +02:00
bytes = "0.4.12"
2019-08-07 19:49:11 +02:00
log = "0.4.8"
2019-08-23 05:29:08 +02:00
pretty_env_logger = "0.3.1"
2019-08-09 06:51:21 +02:00
serde = { version = "1.0.98", features = ["derive"] }
bson = "0.13.0"
2019-07-04 05:06:43 +02:00
serde_json = "1.0.40"
2019-08-23 05:29:08 +02:00
serde-hjson = "0.9.1"
2019-06-03 09:41:28 +02:00
serde_yaml = "0.8"
2019-08-10 07:02:15 +02:00
serde_bytes = "0.11.2"
2019-05-28 08:45:18 +02:00
getset = "0.0.7"
2019-07-16 21:10:25 +02:00
language-reporting = "0.3.1"
app_dirs = "1.2.1"
csv = "1.1"
2019-08-23 05:29:08 +02:00
toml = "0.5.3"
clap = "2.33.0"
2019-08-24 00:59:05 +02:00
git2 = { version = "0.9.2", default_features = false }
2019-07-29 09:46:24 +02:00
dirs = "2.0.2"
glob = "0.3.0"
2019-06-07 02:31:22 +02:00
ctrlc = "3.1.3"
2019-06-07 09:50:26 +02:00
ptree = "0.2"
2019-08-24 21:36:19 +02:00
surf = "1.0"
url = "2.1.0"
2019-08-10 07:02:15 +02:00
roxmltree = "0.7.0"
nom5_locate = "0.1.1"
2019-06-27 06:56:48 +02:00
enum-utils = "0.1.1"
2019-07-29 09:46:24 +02:00
unicode-xid = "0.2.0"
2019-06-16 08:43:40 +02:00
serde_ini = "0.2.0"
2019-06-18 04:04:34 +02:00
subprocess = "0.1.18"
mime = "0.3.13"
2019-08-09 06:51:21 +02:00
regex = "1.2.1"
2019-07-04 07:23:05 +02:00
pretty-hex = "0.1.0"
neso = "0.5.0"
2019-08-07 19:49:11 +02:00
crossterm = "0.10.2"
tempfile = "3.1.0"
2019-08-07 19:49:11 +02:00
image = "0.22.1"
semver = "0.9.0"
uuid = {version = "0.7.4", features = [ "v4", "serde" ]}
2019-08-10 08:31:31 +02:00
syntect = "3.2.0"
onig_sys = "=69.1.0"
2019-08-21 08:39:57 +02:00
heim = "0.0.6"
2019-08-10 08:31:31 +02:00
which = "2.0.1"
2019-08-11 05:01:09 +02:00
battery = "0.7.4"
2019-08-16 07:47:47 +02:00
textwrap = {version = "0.11.0", features = ["term_size"]}
2019-08-23 05:29:08 +02:00
rawkey = {version = "0.1.2", optional = true }
clipboard = {version = "0.5", optional = true }
2019-05-23 06:30:43 +02:00
2019-05-29 17:26:45 +02:00
[dev-dependencies]
pretty_assertions = "0.6.1"
2019-06-27 06:56:48 +02:00
[lib]
name = "nu"
path = "src/lib.rs"
[[bin]]
name = "nu_plugin_inc"
path = "src/plugins/inc.rs"
2019-07-26 20:40:00 +02:00
[[bin]]
name = "nu_plugin_sum"
path = "src/plugins/sum.rs"
2019-07-22 05:52:57 +02:00
[[bin]]
name = "nu_plugin_add"
path = "src/plugins/add.rs"
[[bin]]
name = "nu_plugin_edit"
path = "src/plugins/edit.rs"
2019-07-28 09:01:32 +02:00
[[bin]]
name = "nu_plugin_str"
path = "src/plugins/str.rs"
2019-07-03 19:37:09 +02:00
[[bin]]
name = "nu_plugin_skip"
path = "src/plugins/skip.rs"
2019-07-03 19:37:09 +02:00
[[bin]]
name = "nu_plugin_sys"
path = "src/plugins/sys.rs"
2019-07-04 07:11:56 +02:00
[[bin]]
name = "nu_plugin_tree"
path = "src/plugins/tree.rs"
2019-07-04 07:11:56 +02:00
2019-07-04 07:23:05 +02:00
[[bin]]
name = "nu_plugin_binaryview"
path = "src/plugins/binaryview.rs"
2019-07-24 19:14:30 +02:00
[[bin]]
name = "nu_plugin_textview"
path = "src/plugins/textview.rs"
2019-06-27 06:56:48 +02:00
[[bin]]
name = "nu"
path = "src/main.rs"