mirror of
https://github.com/nushell/nushell.git
synced 2024-11-07 17:14:23 +01:00
203 lines
6.1 KiB
TOML
203 lines
6.1 KiB
TOML
[package]
|
|
name = "nu"
|
|
version = "0.6.2"
|
|
authors = ["Yehuda Katz <wycats@gmail.com>", "Jonathan Turner <jonathan.d.turner@gmail.com>", "Andrés N. Robalino <andres@androbtech.com>"]
|
|
description = "A shell for the GitHub era"
|
|
license = "MIT"
|
|
edition = "2018"
|
|
readme = "README.md"
|
|
default-run = "nu"
|
|
repository = "https://github.com/nushell/nushell"
|
|
homepage = "https://www.nushell.sh"
|
|
documentation = "https://book.nushell.sh"
|
|
|
|
[workspace]
|
|
|
|
members = [
|
|
"crates/nu-macros",
|
|
"crates/nu-errors",
|
|
"crates/nu-source",
|
|
"crates/nu_plugin_average",
|
|
"crates/nu_plugin_binaryview",
|
|
"crates/nu_plugin_fetch",
|
|
"crates/nu_plugin_inc",
|
|
"crates/nu_plugin_match",
|
|
"crates/nu_plugin_post",
|
|
"crates/nu_plugin_ps",
|
|
"crates/nu_plugin_str",
|
|
"crates/nu_plugin_sum",
|
|
"crates/nu_plugin_sys",
|
|
"crates/nu_plugin_textview",
|
|
"crates/nu_plugin_tree",
|
|
"crates/nu-protocol",
|
|
"crates/nu-parser",
|
|
"crates/nu-value-ext",
|
|
"crates/nu-build"
|
|
]
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
nu-source = { version = "0.1.0", path = "./crates/nu-source" }
|
|
nu-protocol = { version = "0.1.0", path = "./crates/nu-protocol" }
|
|
nu-errors = { version = "0.1.0", path = "./crates/nu-errors" }
|
|
nu-parser = { version = "0.1.0", path = "./crates/nu-parser" }
|
|
nu-value-ext = { version = "0.1.0", path = "./crates/nu-value-ext" }
|
|
nu_plugin_average = {version = "0.1.0", path = "./crates/nu_plugin_average", optional=true}
|
|
nu_plugin_binaryview = {version = "0.1.0", path = "./crates/nu_plugin_binaryview", optional=true}
|
|
nu_plugin_fetch = {version = "0.1.0", path = "./crates/nu_plugin_fetch", optional=true}
|
|
nu_plugin_inc = {version = "0.1.0", path = "./crates/nu_plugin_inc", optional=true}
|
|
nu_plugin_match = {version = "0.1.0", path = "./crates/nu_plugin_match", optional=true}
|
|
nu_plugin_post = {version = "0.1.0", path = "./crates/nu_plugin_post", optional=true}
|
|
nu_plugin_ps = {version = "0.1.0", path = "./crates/nu_plugin_ps", optional=true}
|
|
nu_plugin_str = {version = "0.1.0", path = "./crates/nu_plugin_str", optional=true}
|
|
nu_plugin_sum = {version = "0.1.0", path = "./crates/nu_plugin_sum", optional=true}
|
|
nu_plugin_sys = {version = "0.1.0", path = "./crates/nu_plugin_sys", optional=true}
|
|
nu_plugin_textview = {version = "0.1.0", path = "./crates/nu_plugin_textview", optional=true}
|
|
nu_plugin_tree = {version = "0.1.0", path = "./crates/nu_plugin_tree", optional=true}
|
|
nu-macros = { version = "0.1.0", path = "./crates/nu-macros" }
|
|
|
|
|
|
query_interface = "0.3.5"
|
|
typetag = "0.1.4"
|
|
rustyline = "5.0.4"
|
|
chrono = { version = "0.4.10", features = ["serde"] }
|
|
derive-new = "0.5.8"
|
|
prettytable-rs = "0.8.0"
|
|
itertools = "0.8.2"
|
|
ansi_term = "0.12.1"
|
|
nom = "5.0.1"
|
|
dunce = "1.0.0"
|
|
indexmap = { version = "1.3.0", features = ["serde-1"] }
|
|
chrono-humanize = "0.0.11"
|
|
byte-unit = "3.0.3"
|
|
base64 = "0.11"
|
|
futures-preview = { version = "=0.3.0-alpha.19", features = ["compat", "io-compat"] }
|
|
async-stream = "0.1.2"
|
|
futures_codec = "0.2.5"
|
|
num-traits = "0.2.10"
|
|
term = "0.5.2"
|
|
bytes = "0.4.12"
|
|
log = "0.4.8"
|
|
pretty_env_logger = "0.3.1"
|
|
serde = { version = "1.0.103", features = ["derive"] }
|
|
bson = { version = "0.14.0", features = ["decimal128"] }
|
|
serde_json = "1.0.44"
|
|
serde-hjson = "0.9.1"
|
|
serde_yaml = "0.8"
|
|
serde_bytes = "0.11.3"
|
|
getset = "0.0.9"
|
|
language-reporting = "0.4.0"
|
|
app_dirs = "1.2.1"
|
|
csv = "1.1"
|
|
toml = "0.5.5"
|
|
clap = "2.33.0"
|
|
git2 = { version = "0.10.2", default_features = false }
|
|
dirs = "2.0.2"
|
|
glob = "0.3.0"
|
|
ctrlc = "3.1.3"
|
|
roxmltree = "0.7.3"
|
|
nom_locate = "1.0.0"
|
|
nom-tracable = "0.4.1"
|
|
unicode-xid = "0.2.0"
|
|
serde_ini = "0.2.0"
|
|
subprocess = "0.1.18"
|
|
pretty-hex = "0.1.1"
|
|
hex = "0.4"
|
|
tempfile = "3.1.0"
|
|
which = "3.1"
|
|
textwrap = {version = "0.11.0", features = ["term_size"]}
|
|
shellexpand = "1.0.0"
|
|
pin-utils = "0.1.0-alpha.4"
|
|
num-bigint = { version = "0.2.3", features = ["serde"] }
|
|
bigdecimal = { version = "0.1.0", features = ["serde"] }
|
|
serde_urlencoded = "0.6.1"
|
|
trash = "1.0.0"
|
|
regex = "1"
|
|
cfg-if = "0.1"
|
|
strip-ansi-escapes = "0.1.0"
|
|
calamine = "0.16"
|
|
umask = "0.1"
|
|
futures-util = "0.3.1"
|
|
termcolor = "1.0.5"
|
|
natural = "0.3.0"
|
|
|
|
clipboard = {version = "0.5", optional = true }
|
|
ptree = {version = "0.2" }
|
|
starship = { version = "0.28", optional = true}
|
|
heim = {version = "0.0.9", optional = true}
|
|
battery = {version = "0.7.5", optional = true}
|
|
syntect = {version = "3.2.0", optional = true }
|
|
onig_sys = {version = "=69.1.0", optional = true }
|
|
crossterm = {version = "0.10.2", optional = true}
|
|
futures-timer = {version = "1.0.2", optional = true}
|
|
url = {version = "2.1.0", optional = true}
|
|
semver = {version = "0.9.0", optional = true}
|
|
|
|
[features]
|
|
default = ["sys", "ps", "textview", "inc", "str"]
|
|
stable = ["sys", "ps", "starship-prompt", "textview", "binaryview", "match", "tree", "average", "sum"]
|
|
|
|
sys = ["heim", "battery"]
|
|
ps = ["heim", "futures-timer"]
|
|
textview = ["crossterm", "syntect", "onig_sys", "url"]
|
|
str = []
|
|
|
|
inc = ["semver"]
|
|
starship-prompt = ["starship"]
|
|
binaryview = ["nu_plugin_binaryview"]
|
|
match = ["nu_plugin_match"]
|
|
tree = ["nu_plugin_tree"]
|
|
average = ["nu_plugin_average"]
|
|
sum = ["nu_plugin_sum"]
|
|
trace = ["nu-parser/trace"]
|
|
|
|
[dependencies.rusqlite]
|
|
version = "0.20.0"
|
|
features = ["bundled", "blob"]
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "0.6.1"
|
|
|
|
[build-dependencies]
|
|
toml = "0.5.5"
|
|
serde = { version = "1.0.103", features = ["derive"] }
|
|
nu-build = { version = "0.1.0", path = "./crates/nu-build" }
|
|
|
|
[lib]
|
|
name = "nu"
|
|
path = "src/lib.rs"
|
|
|
|
# Core plugins that ship with `cargo install nu` by default
|
|
# Currently, Cargo limits us to installing only one binary
|
|
# unless we use [[bin]], so we use this as a workaround
|
|
[[bin]]
|
|
name = "nu_plugin_core_textview"
|
|
path = "crates/nu_plugin_textview/src/main.rs"
|
|
required-features = ["textview"]
|
|
|
|
[[bin]]
|
|
name = "nu_plugin_core_inc"
|
|
path = "crates/nu_plugin_inc/src/main.rs"
|
|
required-features = ["inc"]
|
|
|
|
[[bin]]
|
|
name = "nu_plugin_core_ps"
|
|
path = "crates/nu_plugin_ps/src/main.rs"
|
|
required-features = ["ps"]
|
|
|
|
[[bin]]
|
|
name = "nu_plugin_core_str"
|
|
path = "crates/nu_plugin_str/src/main.rs"
|
|
required-features = ["str"]
|
|
|
|
[[bin]]
|
|
name = "nu_plugin_core_sys"
|
|
path = "crates/nu_plugin_sys/src/main.rs"
|
|
required-features = ["sys"]
|
|
|
|
# Main nu binary
|
|
[[bin]]
|
|
name = "nu"
|
|
path = "src/main.rs"
|