mirror of
https://github.com/nushell/nushell
synced 2024-12-25 20:43:09 +00:00
353 lines
9.8 KiB
TOML
353 lines
9.8 KiB
TOML
[package]
|
|
<<<<<<< HEAD
|
|
authors = ["The Nu Project Contributors"]
|
|
default-run = "nu"
|
|
description = "A new type of shell"
|
|
documentation = "https://www.nushell.sh/book/"
|
|
edition = "2018"
|
|
exclude = ["images"]
|
|
homepage = "https://www.nushell.sh"
|
|
license = "MIT"
|
|
name = "nu"
|
|
readme = "README.md"
|
|
repository = "https://github.com/nushell/nushell"
|
|
version = "0.43.0"
|
|
|
|
[workspace]
|
|
members = ["crates/*/"]
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
nu-cli = { version = "0.43.0", path="./crates/nu-cli", default-features=false }
|
|
nu-command = { version = "0.43.0", path="./crates/nu-command" }
|
|
nu-completion = { version = "0.43.0", path="./crates/nu-completion" }
|
|
nu-data = { version = "0.43.0", path="./crates/nu-data" }
|
|
nu-engine = { version = "0.43.0", path="./crates/nu-engine" }
|
|
nu-errors = { version = "0.43.0", path="./crates/nu-errors" }
|
|
nu-parser = { version = "0.43.0", path="./crates/nu-parser" }
|
|
nu-path = { version = "0.43.0", path="./crates/nu-path" }
|
|
nu-plugin = { version = "0.43.0", path="./crates/nu-plugin" }
|
|
nu-protocol = { version = "0.43.0", path="./crates/nu-protocol" }
|
|
nu-source = { version = "0.43.0", path="./crates/nu-source" }
|
|
nu-value-ext = { version = "0.43.0", path="./crates/nu-value-ext" }
|
|
|
|
nu_plugin_binaryview = { version = "0.43.0", path="./crates/nu_plugin_binaryview", optional=true }
|
|
nu_plugin_chart = { version = "0.43.0", path="./crates/nu_plugin_chart", optional=true }
|
|
nu_plugin_from_bson = { version = "0.43.0", path="./crates/nu_plugin_from_bson", optional=true }
|
|
nu_plugin_from_sqlite = { version = "0.43.0", path="./crates/nu_plugin_from_sqlite", optional=true }
|
|
nu_plugin_inc = { version = "0.43.0", path="./crates/nu_plugin_inc", optional=true }
|
|
nu_plugin_match = { version = "0.43.0", path="./crates/nu_plugin_match", optional=true }
|
|
nu_plugin_query_json = { version = "0.43.0", path="./crates/nu_plugin_query_json", optional=true }
|
|
nu_plugin_s3 = { version = "0.43.0", path="./crates/nu_plugin_s3", optional=true }
|
|
nu_plugin_selector = { version = "0.43.0", path="./crates/nu_plugin_selector", optional=true }
|
|
nu_plugin_start = { version = "0.43.0", path="./crates/nu_plugin_start", optional=true }
|
|
nu_plugin_textview = { version = "0.43.0", path="./crates/nu_plugin_textview", optional=true }
|
|
nu_plugin_to_bson = { version = "0.43.0", path="./crates/nu_plugin_to_bson", optional=true }
|
|
nu_plugin_to_sqlite = { version = "0.43.0", path="./crates/nu_plugin_to_sqlite", optional=true }
|
|
nu_plugin_tree = { version = "0.43.0", path="./crates/nu_plugin_tree", optional=true }
|
|
nu_plugin_xpath = { version = "0.43.0", path="./crates/nu_plugin_xpath", optional=true }
|
|
|
|
# Required to bootstrap the main binary
|
|
ctrlc = { version="3.1.7", optional=true }
|
|
futures = { version="0.3.12", features=["compat", "io-compat"] }
|
|
itertools = "0.10.0"
|
|
|
|
[dev-dependencies]
|
|
nu-test-support = { version = "0.43.0", path="./crates/nu-test-support" }
|
|
serial_test = "0.5.1"
|
|
hamcrest2 = "0.3.0"
|
|
rstest = "0.10.0"
|
|
|
|
[build-dependencies]
|
|
|
|
[features]
|
|
fetch-support = ["nu-command/fetch", "nu-command/post"]
|
|
sys-support = ["nu-command/sys", "nu-command/ps"]
|
|
ctrlc-support = ["nu-cli/ctrlc", "nu-command/ctrlc"]
|
|
rustyline-support = ["nu-cli/rustyline-support", "nu-command/rustyline-support"]
|
|
term-support = ["nu-command/term"]
|
|
uuid-support = ["nu-command/uuid_crate"]
|
|
which-support = ["nu-command/which", "nu-engine/which"]
|
|
|
|
default = [
|
|
"nu-cli/shadow-rs",
|
|
"sys-support",
|
|
"ctrlc-support",
|
|
"which-support",
|
|
"term-support",
|
|
"rustyline-support",
|
|
"match",
|
|
"fetch-support",
|
|
"zip-support",
|
|
"dataframe",
|
|
]
|
|
|
|
stable = ["default"]
|
|
extra = [
|
|
"default",
|
|
"binaryview",
|
|
"inc",
|
|
"tree",
|
|
"textview",
|
|
"trash-support",
|
|
"uuid-support",
|
|
"start",
|
|
"bson",
|
|
"sqlite",
|
|
"s3",
|
|
"chart",
|
|
"xpath",
|
|
"selector",
|
|
"query-json",
|
|
]
|
|
|
|
wasi = ["inc", "match", "match", "tree", "rustyline-support"]
|
|
|
|
# Stable (Default)
|
|
inc = ["nu_plugin_inc"]
|
|
match = ["nu_plugin_match"]
|
|
textview = ["nu_plugin_textview"]
|
|
|
|
# Extra
|
|
binaryview = ["nu_plugin_binaryview"]
|
|
bson = ["nu_plugin_from_bson", "nu_plugin_to_bson"]
|
|
chart = ["nu_plugin_chart"]
|
|
query-json = ["nu_plugin_query_json"]
|
|
s3 = ["nu_plugin_s3"]
|
|
selector = ["nu_plugin_selector"]
|
|
sqlite = ["nu_plugin_from_sqlite", "nu_plugin_to_sqlite"]
|
|
start = ["nu_plugin_start"]
|
|
trash-support = [
|
|
"nu-command/trash-support",
|
|
"nu-engine/trash-support",
|
|
]
|
|
tree = ["nu_plugin_tree"]
|
|
xpath = ["nu_plugin_xpath"]
|
|
zip-support = ["nu-command/zip"]
|
|
|
|
#dataframe feature for nushell
|
|
dataframe = [
|
|
"nu-engine/dataframe",
|
|
"nu-protocol/dataframe",
|
|
"nu-command/dataframe",
|
|
"nu-value-ext/dataframe",
|
|
"nu-data/dataframe",
|
|
"nu_plugin_to_bson/dataframe",
|
|
]
|
|
|
|
[profile.release]
|
|
opt-level = "s" # Optimize for size.
|
|
|
|
# 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 = "src/plugins/nu_plugin_core_textview.rs"
|
|
required-features = ["textview"]
|
|
|
|
[[bin]]
|
|
name = "nu_plugin_core_inc"
|
|
=======
|
|
name = "nu"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
default-run = "nu"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[workspace]
|
|
members = [
|
|
"crates/nu-cli",
|
|
"crates/nu-engine",
|
|
"crates/nu-parser",
|
|
"crates/nu-system",
|
|
"crates/nu-command",
|
|
"crates/nu-protocol",
|
|
"crates/nu-plugin",
|
|
"crates/nu_plugin_inc",
|
|
"crates/nu_plugin_gstat",
|
|
"crates/nu_plugin_example",
|
|
"crates/nu_plugin_query",
|
|
]
|
|
|
|
[dependencies]
|
|
reedline = { git = "https://github.com/nushell/reedline", branch = "main" }
|
|
|
|
crossterm = "0.22.*"
|
|
nu-cli = { path="./crates/nu-cli" }
|
|
nu-command = { path="./crates/nu-command" }
|
|
nu-engine = { path="./crates/nu-engine" }
|
|
nu-json = { path="./crates/nu-json" }
|
|
nu-parser = { path="./crates/nu-parser" }
|
|
nu-path = { path="./crates/nu-path" }
|
|
nu-pretty-hex = { path = "./crates/nu-pretty-hex" }
|
|
nu-protocol = { path = "./crates/nu-protocol" }
|
|
nu-plugin = { path = "./crates/nu-plugin", optional = true }
|
|
nu-system = { path = "./crates/nu-system"}
|
|
nu-table = { path = "./crates/nu-table" }
|
|
nu-term-grid = { path = "./crates/nu-term-grid" }
|
|
|
|
nu-ansi-term = "0.42.0"
|
|
nu-color-config = { path = "./crates/nu-color-config" }
|
|
miette = "3.0.0"
|
|
ctrlc = "3.2.1"
|
|
crossterm_winapi = "0.9.0"
|
|
log = "0.4"
|
|
pretty_env_logger = "0.4.0"
|
|
# mimalloc = { version = "*", default-features = false }
|
|
|
|
|
|
nu_plugin_inc = { version = "0.1.0", path = "./crates/nu_plugin_inc", optional = true }
|
|
nu_plugin_example = { version = "0.1.0", path = "./crates/nu_plugin_example", optional = true }
|
|
nu_plugin_gstat = { version = "0.1.0", path = "./crates/nu_plugin_gstat", optional = true }
|
|
nu_plugin_query = { version = "0.1.0", path = "./crates/nu_plugin_query", optional = true }
|
|
|
|
[dev-dependencies]
|
|
nu-test-support = { path="./crates/nu-test-support" }
|
|
tempfile = "3.2.0"
|
|
assert_cmd = "2.0.2"
|
|
pretty_assertions = "1.0.0"
|
|
serial_test = "0.5.1"
|
|
hamcrest2 = "0.3.0"
|
|
rstest = "0.12.0"
|
|
itertools = "0.10.3"
|
|
|
|
[features]
|
|
plugin = ["nu-plugin", "nu-parser/plugin", "nu-command/plugin", "nu-protocol/plugin", "nu-engine/plugin"]
|
|
default = [
|
|
"plugin",
|
|
"inc",
|
|
"example",
|
|
"which"
|
|
]
|
|
|
|
stable = ["default"]
|
|
|
|
extra = [
|
|
"default",
|
|
"dataframe",
|
|
"gstat",
|
|
"zip-support",
|
|
"query",
|
|
]
|
|
|
|
wasi = ["inc"]
|
|
|
|
# Stable (Default)
|
|
inc = ["nu_plugin_inc"]
|
|
example = ["nu_plugin_example"]
|
|
which = ["nu-command/which"]
|
|
|
|
# Extra
|
|
gstat = ["nu_plugin_gstat"]
|
|
zip-support = ["nu-command/zip"]
|
|
query = ["nu_plugin_query"]
|
|
|
|
# Dataframe feature for nushell
|
|
dataframe = ["nu-command/dataframe"]
|
|
|
|
[profile.release]
|
|
opt-level = "s" # Optimize for size
|
|
|
|
# Build plugins
|
|
[[bin]]
|
|
name = "nu_plugin_inc"
|
|
>>>>>>> 9259a56a28f1dd3a4b720ad815aa19c6eaf6adce
|
|
path = "src/plugins/nu_plugin_core_inc.rs"
|
|
required-features = ["inc"]
|
|
|
|
[[bin]]
|
|
<<<<<<< HEAD
|
|
name = "nu_plugin_core_match"
|
|
path = "src/plugins/nu_plugin_core_match.rs"
|
|
required-features = ["match"]
|
|
|
|
# Extra plugins
|
|
|
|
[[bin]]
|
|
name = "nu_plugin_extra_binaryview"
|
|
path = "src/plugins/nu_plugin_extra_binaryview.rs"
|
|
required-features = ["binaryview"]
|
|
|
|
[[bin]]
|
|
name = "nu_plugin_extra_tree"
|
|
path = "src/plugins/nu_plugin_extra_tree.rs"
|
|
required-features = ["tree"]
|
|
|
|
[[bin]]
|
|
name = "nu_plugin_extra_query_json"
|
|
path = "src/plugins/nu_plugin_extra_query_json.rs"
|
|
required-features = ["query-json"]
|
|
|
|
[[bin]]
|
|
name = "nu_plugin_extra_start"
|
|
path = "src/plugins/nu_plugin_extra_start.rs"
|
|
required-features = ["start"]
|
|
|
|
[[bin]]
|
|
name = "nu_plugin_extra_s3"
|
|
path = "src/plugins/nu_plugin_extra_s3.rs"
|
|
required-features = ["s3"]
|
|
|
|
[[bin]]
|
|
name = "nu_plugin_extra_chart_bar"
|
|
path = "src/plugins/nu_plugin_extra_chart_bar.rs"
|
|
required-features = ["chart"]
|
|
|
|
[[bin]]
|
|
name = "nu_plugin_extra_chart_line"
|
|
path = "src/plugins/nu_plugin_extra_chart_line.rs"
|
|
required-features = ["chart"]
|
|
|
|
[[bin]]
|
|
name = "nu_plugin_extra_xpath"
|
|
path = "src/plugins/nu_plugin_extra_xpath.rs"
|
|
required-features = ["xpath"]
|
|
|
|
[[bin]]
|
|
name = "nu_plugin_extra_selector"
|
|
path = "src/plugins/nu_plugin_extra_selector.rs"
|
|
required-features = ["selector"]
|
|
|
|
[[bin]]
|
|
name = "nu_plugin_extra_from_bson"
|
|
path = "src/plugins/nu_plugin_extra_from_bson.rs"
|
|
required-features = ["bson"]
|
|
|
|
[[bin]]
|
|
name = "nu_plugin_extra_to_bson"
|
|
path = "src/plugins/nu_plugin_extra_to_bson.rs"
|
|
required-features = ["bson"]
|
|
|
|
[[bin]]
|
|
name = "nu_plugin_extra_from_sqlite"
|
|
path = "src/plugins/nu_plugin_extra_from_sqlite.rs"
|
|
required-features = ["sqlite"]
|
|
|
|
[[bin]]
|
|
name = "nu_plugin_extra_to_sqlite"
|
|
path = "src/plugins/nu_plugin_extra_to_sqlite.rs"
|
|
required-features = ["sqlite"]
|
|
=======
|
|
name = "nu_plugin_example"
|
|
path = "src/plugins/nu_plugin_core_example.rs"
|
|
required-features = ["example"]
|
|
|
|
# Extra plugins
|
|
[[bin]]
|
|
name = "nu_plugin_gstat"
|
|
path = "src/plugins/nu_plugin_extra_gstat.rs"
|
|
required-features = ["gstat"]
|
|
|
|
[[bin]]
|
|
name = "nu_plugin_query"
|
|
path = "src/plugins/nu_plugin_extra_query.rs"
|
|
required-features = ["query"]
|
|
>>>>>>> 9259a56a28f1dd3a4b720ad815aa19c6eaf6adce
|
|
|
|
# Main nu binary
|
|
[[bin]]
|
|
name = "nu"
|
|
path = "src/main.rs"
|