nushell/Cargo.toml

83 lines
1.8 KiB
TOML
Raw Normal View History

2019-06-27 06:56:48 +02:00
cargo-features = ["default-run"]
2019-05-10 18:59:12 +02:00
[package]
2019-05-17 01:39:58 +02:00
name = "nu"
2019-06-02 20:55:40 +02:00
version = "0.1.2"
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-06-27 06:56:48 +02:00
default-run = "nu"
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"
derive-new = "0.5.6"
prettytable-rs = "0.8.0"
itertools = "0.8.0"
2019-05-11 06:45:57 +02:00
ansi_term = "0.11.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-05-17 17:55:50 +02:00
ordered-float = "1.0.2"
2019-06-19 06:53:55 +02:00
prettyprint = "0.7.0"
futures-preview = { version = "0.3.0-alpha.16", features = ["compat", "io-compat"] }
2019-05-24 06:34:43 +02:00
futures-sink-preview = "0.3.0-alpha.16"
futures_codec = "0.2.2"
term = "0.5.2"
2019-05-25 21:07:52 +02:00
bytes = "0.4.12"
2019-05-26 08:54:41 +02:00
log = "0.4.6"
pretty_env_logger = "0.3.0"
2019-06-26 20:08:41 +02:00
serde = "1.0.93"
2019-05-28 04:01:37 +02:00
serde_json = "1.0.39"
2019-06-03 09:41:28 +02:00
serde-hjson = "0.9.0"
serde_yaml = "0.8"
2019-06-26 20:08:41 +02:00
serde_derive = "1.0.93"
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"
language-reporting = "0.3.0"
app_dirs = "1.2.1"
toml = "0.5.1"
toml-query = "0.9.0"
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"
2019-06-22 05:43:37 +02:00
nom_locate = { git = "https://github.com/wycats/nom_locate.git", branch = "nom5" }
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-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"
[[bin]]
name = "nu"
path = "src/main.rs"