test crates.io

XQ

JQ reimplemented purely in Rust.

Caution

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.

Current state

Goals

Ideas

Install and run

Are you sure you want to use this??? It's not a daily-usable stage. Though if you want to try, you can install it via shell $ cargo install xq $ cat whatever.json | xq 'query goes here' . Or to get the latet version, please clone this repository to your local, and run shell $ cargo install --path path-to-cloned-dir $ cat whatever.json | xq 'query goes here' . Alternatively, shell $ cat whatever.json | cargo run -- 'query goes here' in the cloned directory to try out them without installing.

Uninstall

shell $ cargo uninstall xq if you've installed via cargo install. Also remove the cloned directory if you've cloned the repository.

Pubilsh new version

Note for myself. shell $ git swithc master # make sure you're on the master branch $ cargo release patch # to dry-run the release $ cargo release patch --execute # to actually execute the release

Acknowledgements

Credits

Author

Mi_Sawa

LICENSE

MIT. Please refer to LICENSE file.