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. TL;DR: Bump the version, reflect it to the lock file, commit changes and cargo publish. shell $ cargo set-version --bump patch # or just edit Cargo.toml to bump the version $ cargo build # to generate Cargo.lock $ git commit -am "Bump version" # so that there's no uncommited changes $ git push # and it's synced with the remote repo $ cargo publish

Acknowledgements

Credits

Author

Mi_Sawa

LICENSE

MIT. Please refer to LICENSE file.