sckott / rt-cli

CLI tool for running tests in R packages
MIT License
5 stars 1 forks source link

Best practice for users to get the binary installed? #7

Open sckott opened 1 week ago

sckott commented 1 week ago

@JosiahParry if a rust package is not on crates.io, what's best practice for having users install a rust cli tool like this? Is it maybe cargo install --git https://github.com/sckott/rt-cli.git ? Or something else? Build binaries and add them to releases in the repo?

JosiahParry commented 1 week ago

Yes that is right! There is also a library called cargo dist (which I haven’t used yet) that helps create installers for various OS

https://github.com/axodotdev/cargo-dist

sckott commented 1 week ago

Thanks