2019-05-10 18:59:12 +02:00
|
|
|
[package]
|
2019-05-17 01:39:58 +02:00
|
|
|
name = "nu"
|
2019-05-18 05:16:06 +02:00
|
|
|
version = "0.1.1"
|
2019-05-10 18:59:12 +02:00
|
|
|
authors = ["Yehuda Katz <wycats@gmail.com>"]
|
2019-05-16 23:46:24 +02:00
|
|
|
description = "A shell for the GitHub era"
|
|
|
|
license = "ISC"
|
2019-05-10 18:59:12 +02:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2019-05-22 09:12:03 +02:00
|
|
|
rustyline = "4.1.0"
|
|
|
|
sysinfo = "0.8.4"
|
2019-05-10 18:59:12 +02:00
|
|
|
chrono = "0.4.6"
|
|
|
|
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-05-22 09:12:03 +02:00
|
|
|
conch-parser = "0.1.1"
|
2019-05-11 06:45:57 +02:00
|
|
|
nom = "5.0.0-beta1"
|
2019-05-11 09:00:33 +02:00
|
|
|
subprocess = "0.1.18"
|
|
|
|
dunce = "1.0.0"
|
2019-05-15 20:14:51 +02:00
|
|
|
indexmap = "1.0.2"
|
|
|
|
chrono-humanize = "0.0.11"
|
|
|
|
byte-unit = "2.1.0"
|
2019-05-17 17:55:50 +02:00
|
|
|
ordered-float = "1.0.2"
|
2019-05-18 03:24:13 +02:00
|
|
|
prettyprint = "0.6.0"
|
2019-05-22 09:12:03 +02:00
|
|
|
cursive = { version = "0.12.0", features = ["pancurses-backend"], default-features = false }
|
2019-05-23 06:30:43 +02:00
|
|
|
futures-preview = "0.3.0-alpha.16"
|
|
|
|
|
|
|
|
[dependencies.pancurses]
|
|
|
|
version = "0.16"
|
|
|
|
features = ["win32a"]
|