JQ reimplemented purely in Rust.
This program is under development. You probably want to use the original implementation of jq, or pure Go implementation of it called gojq built by itchyny instead.
Most of the jq components that require syntactical support are, hmm, implemented and tested against queries taken from the jq user manual.
Exceptions are string format (@base64
etc.), imports, and module headers.
Many builtin functions are missing, include those require intrinsic implementation.
Need more unit tests. Most of the CLI options are missing.
Since we use serde to deserialize input / serialize output, we should be able to support any format which has serde implementation without too much effort, except those require scheme (protobuf, thrift, etc.).
As a library, we should be able to make anything that implements Serialize
as the input type, and anything implements Deserialize
as the output type.
So in theory, we should be able to write a library that can handle following;
```rust
struct GitHubRepo { username: String, reponame: String, stars: usize, }
struct User {
name: String,
totalstars: usize,
}
let repos: Vec
Do you really want to use it???
Currently, you need to clone this repository and do
shell
cat whatever.json | cargo run -- 'query goes here'
MIT. Please refer to LICENSE file.