CertainLach/jrsonnet

cargo install?

AlJohri opened this issue · 4 comments

is it possible to cargo install the jrsonnet CLI? If not, would it be possible to support this mode of installation?

I see the jrsonnet crate was yanked from crates.io. I also didn't see the jrsonnet-cli published on crates.io.

It is possible, using git dependency:

cargo install --git https://github.com/CertainLach/jrsonnet

great, that worked! any reason to not publish to crates.io?

I wanted to release new version of jrsonnet in december, but I was busy, and haven't managed to deliver final strokes.

For now, I have published prerelease (To at least reserve package names), you can install it using

cargo install jrsonnet --version 0.5.0-pre6

jrsonnet-cli package is not a jrsonnet command, but the definition of its arguments for clap command line argument parsing library, which may be used for other utilities.

Great, thanks for the clarification! Closing as complete :)