nushell/Cargo.toml

125 lines
2.6 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"
version = "0.1.3"
2019-06-02 18:50:41 +02:00
authors = ["Yehuda Katz <wycats@gmail.com>", "Jonathan Turner <jonathan.d.turner@gmail.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"
homepage = "https://github.com/nushell/nushell"
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-06-22 05:43:37 +02:00
rustyline = "5.0.0"
2019-06-27 06:56:48 +02:00
sysinfo = "0.9"
chrono = { version = "0.4.7", features = ["serde"] }
2019-05-10 18:59:12 +02:00
chrono-tz = "0.5.1"
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"
byte-unit = "2.1.0"
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-07-24 09:44:12 +02:00
futures-preview = { version = "=0.3.0-alpha.17", features = ["compat", "io-compat"] }
futures-sink-preview = "=0.3.0-alpha.17"
futures_codec = "0.2.5"
term = "0.5.2"
2019-05-25 21:07:52 +02:00
bytes = "0.4.12"
2019-07-15 20:34:44 +02:00
log = "0.4.7"
2019-05-26 08:54:41 +02:00
pretty_env_logger = "0.3.0"
2019-07-24 09:44:12 +02:00
serde = "1.0.97"
2019-07-04 05:06:43 +02:00
serde_json = "1.0.40"
2019-06-03 09:41:28 +02:00
serde-hjson = "0.9.0"
serde_yaml = "0.8"
2019-07-24 09:44:12 +02:00
serde_derive = "1.0.97"
2019-07-15 20:34:44 +02:00
serde_bytes = "0.11.1"
2019-05-28 08:45:18 +02:00
getset = "0.0.7"
2019-05-29 17:26:45 +02:00
logos = "0.10.0-rc2"
logos-derive = "0.10.0-rc2"
2019-07-16 21:10:25 +02:00
language-reporting = "0.3.1"
app_dirs = "1.2.1"
csv = "1.1"
toml = "0.5.1"
2019-07-04 05:06:43 +02:00
toml-query = "0.9.2"
clap = "2.33.0"
2019-06-02 18:28:40 +02:00
enum_derive = "0.1.7"
adhoc_derive = "0.1.2"
lazy_static = "1.3.0"
2019-06-19 06:53:55 +02:00
git2 = "0.9.1"
2019-06-03 09:41:28 +02:00
dirs = "2.0.1"
2019-06-07 02:31:22 +02:00
ctrlc = "3.1.3"
2019-06-07 09:50:26 +02:00
ptree = "0.2"
2019-06-07 18:30:50 +02:00
clipboard = "0.5"
2019-06-08 20:09:17 +02:00
reqwest = "0.9"
2019-06-23 19:35:43 +02:00
roxmltree = "0.6.1"
nom5_locate = "0.1.1"
derive_more = "0.15.0"
2019-06-27 06:56:48 +02:00
enum-utils = "0.1.1"
unicode-xid = "0.1.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"
2019-06-19 06:53:55 +02:00
sys-info = "0.5.7"
mime = "0.3.13"
2019-07-15 20:34:44 +02:00
regex = "1.1.9"
2019-07-04 07:23:05 +02:00
pretty-hex = "0.1.0"
neso = "0.5.0"
rawkey = {git = "https://github.com/jonathandturner/rawkey"}
crossterm = "0.9.6"
tempfile = "3.1.0"
2019-07-05 09:53:09 +02:00
image = "0.21.2"
semver = "0.9.0"
uuid = {version = "0.7.4", features = [ "v4", "serde" ]}
syntect = "3.2.0"
2019-07-24 09:44:12 +02:00
strip-ansi-escapes = "0.1.0"
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-03 19:37:09 +02:00
[[bin]]
name = "nu_plugin_skip"
path = "src/plugins/skip.rs"
2019-07-03 19:37:09 +02:00
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"