nushell/crates/nu_plugin_query_json/Cargo.toml
Darren Schroeder ea5bf9db36
add query json plugin for experimentation (#3327)
* add query json plugin for experimentation

* add some error handling

* closer but Kind::Array is still horked

* unravel the table so the output looks right

* clippy

* added the ability to use gjson modifiers
2021-04-19 11:19:06 -05:00

21 lines
559 B
TOML

[package]
authors = ["The Nu Project Contributors"]
description = "query json files with gjson"
edition = "2018"
license = "MIT"
name = "nu_plugin_query_json"
version = "0.29.2"
[lib]
doctest = false
[dependencies]
gjson = "0.7.1"
nu-errors = { version = "0.29.2", path = "../nu-errors" }
nu-plugin = { version = "0.29.2", path = "../nu-plugin" }
nu-protocol = { version = "0.29.2", path = "../nu-protocol" }
nu-source = { version = "0.29.2", path = "../nu-source" }
[dev-dependencies]
nu-test-support = { path = "../nu-test-support", version = "0.29.2" }