You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Presumably, this would be crates.io and possibly GitHub and/or raw Git urls. Something like:
cargo script pkg:some-tool - fetch, build and execute the latest version of the some-tool package from crates.io.
cargo script pkg:many-tools,frob - fetch and build the latest version of the many-tools package from crates.io, and run the frob binary.
cargo script gh:DanielKeep/cargo-script -- script pkg:many-tools(1.1),glom - fetch, build and execute the master branch of the DanielKeep/cargo-script repository from GitHub, which will then fetch and build the many-tools package from crates.io with version spec ^1.1, and then run the glom binary.
The text was updated successfully, but these errors were encountered:
Presumably, this would be
crates.io
and possibly GitHub and/or raw Git urls. Something like:cargo script pkg:some-tool
- fetch, build and execute the latest version of thesome-tool
package from crates.io.cargo script pkg:many-tools,frob
- fetch and build the latest version of themany-tools
package from crates.io, and run thefrob
binary.cargo script gh:DanielKeep/cargo-script -- script pkg:many-tools(1.1),glom
- fetch, build and execute the master branch of theDanielKeep/cargo-script
repository from GitHub, which will then fetch and build themany-tools
package from crates.io with version spec^1.1
, and then run theglom
binary.The text was updated successfully, but these errors were encountered: