[package] name = "nu" version = "0.6.2" authors = ["Yehuda Katz ", "Jonathan Turner ", "Andrés N. Robalino "] 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-errors", "crates/nu-source", "crates/nu_plugin_textview", "crates/nu_plugin_binaryview", "crates/nu_plugin_fetch", "crates/nu_plugin_post", "crates/nu_plugin_ps", "crates/nu_plugin_sys", "crates/nu-protocol", "crates/nu-parser", "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_plugin_textview = {version = "0.1.0", path = "./crates/nu_plugin_textview", 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_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_sys = {version = "0.1.0", path = "./crates/nu_plugin_sys", optional=true} query_interface = "0.3.5" typetag = "0.1.4" rustyline = "5.0.4" chrono = { version = "0.4.9", features = ["serde"] } derive-new = "0.5.8" prettytable-rs = "0.8.0" itertools = "0.8.1" 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.8" term = "0.5.2" bytes = "0.4.12" log = "0.4.8" pretty_env_logger = "0.3.1" serde = { version = "1.0.102", features = ["derive"] } bson = { version = "0.14.0", features = ["decimal128"] } serde_json = "1.0.41" serde-hjson = "0.9.1" serde_yaml = "0.8" serde_bytes = "0.11.2" 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.1", default_features = false } dirs = "2.0.2" glob = "0.3.0" ctrlc = "3.1.3" roxmltree = "0.7.2" nom_locate = "1.0.0" nom-tracable = "0.4.1" unicode-xid = "0.2.0" serde_ini = "0.2.0" subprocess = "0.1.18" mime = "0.3.14" pretty-hex = "0.1.1" hex = "0.4" tempfile = "3.1.0" semver = "0.9.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"] } natural = "0.3.0" serde_urlencoded = "0.6.1" sublime_fuzzy = "0.6" 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.0" pretty = "0.5.2" termcolor = "1.0.5" console = "0.9.1" crossterm = { version = "0.10.2", optional = true } clipboard = {version = "0.5", optional = true } ptree = {version = "0.2" } starship = { version = "0.26.4", optional = true} [features] default = ["sys", "ps"] sys = ["nu_plugin_ps"] starship-prompt = ["starship"] textview = ["nu_plugin_textview"] binaryview = ["nu_plugin_binaryview"] ps = ["nu_plugin_ps"] #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.102", features = ["derive"] } nu-build = { version = "0.1.0", path = "./crates/nu-build" } [lib] name = "nu" path = "src/lib.rs" [[bin]] name = "nu_plugin_inc" path = "src/plugins/inc.rs" [[bin]] name = "nu_plugin_sum" path = "src/plugins/sum.rs" [[bin]] name = "nu_plugin_average" path = "src/plugins/average.rs" [[bin]] name = "nu_plugin_embed" path = "src/plugins/embed.rs" [[bin]] name = "nu_plugin_format" path = "src/plugins/format.rs" [[bin]] name = "nu_plugin_parse" path = "src/plugins/parse.rs" [[bin]] name = "nu_plugin_str" path = "src/plugins/str.rs" [[bin]] name = "nu_plugin_skip" path = "src/plugins/skip.rs" [[bin]] name = "nu_plugin_match" path = "src/plugins/match.rs" [[bin]] name = "nu_plugin_tree" path = "src/plugins/tree.rs" required-features = ["tree"] [[bin]] name = "nu_plugin_docker" path = "src/plugins/docker.rs" required-features = ["docker"] [[bin]] name = "nu" path = "src/main.rs"