How cargo work with third-party binaries?

I'd like to build a set of tools. How can I do this?

# `tools` just like `cargo`
# `a` -> `fmt`
# `b` -> `clippy`
# `c` -> `hack`

tools install tools-a tools-b tools-c
tools a
tools b
tools c

The clap crate whas AppSettings::AllowExternalSubcommands for this.

This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.