mirror of
https://github.com/nushell/nushell.git
synced 2024-11-22 00:13:21 +01:00
78be67f0c6
# Description There wasn't really a good way to implement a command group style (e.g. `from`, `query`, etc.) command in the past that just returns the help text even if `--help` is not passed. This adds a new engine call that just does that. This is actually something I ran into before when developing the dbus plugin, so it's nice to fix it. # User-Facing Changes # Tests + Formatting - 🟢 `toolkit fmt` - 🟢 `toolkit clippy` - 🟢 `toolkit test` - 🟢 `toolkit test stdlib` # After Submitting - [ ] Document `GetHelp` engine call in proto
26 lines
621 B
TOML
26 lines
621 B
TOML
[package]
|
|
authors = ["The Nushell Project Developers"]
|
|
description = "A Nushell plugin to query JSON, XML, and various web data"
|
|
repository = "https://github.com/nushell/nushell/tree/main/crates/nu_plugin_query"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
name = "nu_plugin_query"
|
|
version = "0.91.1"
|
|
|
|
[lib]
|
|
doctest = false
|
|
bench = false
|
|
|
|
[[bin]]
|
|
name = "nu_plugin_query"
|
|
bench = false
|
|
|
|
[dependencies]
|
|
nu-plugin = { path = "../nu-plugin", version = "0.91.1" }
|
|
nu-protocol = { path = "../nu-protocol", version = "0.91.1" }
|
|
|
|
gjson = "0.8"
|
|
scraper = { default-features = false, version = "0.19" }
|
|
sxd-document = "0.3"
|
|
sxd-xpath = "0.4"
|