Advertisement
Necrose99

rust-cross...

May 14th, 2018
270
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. pi64 /usr/src/cross/target/release # cross
  2. -bash: cross: command not found
  3. pi64 /usr/src/cross/target/release # ./cross
  4. Rust's package manager
  5.  
  6. Usage:
  7. cargo <command> [<args>...]
  8. cargo [options]
  9.  
  10. Options:
  11. -h, --help Display this message
  12. -V, --version Print version info and exit
  13. --list List installed commands
  14. --explain CODE Run `rustc --explain CODE`
  15. -v, --verbose ... Use verbose output (-vv very verbose/build.rs output)
  16. -q, --quiet No output printed to stdout
  17. --color WHEN Coloring: auto, always, never
  18. --frozen Require Cargo.lock and cache are up to date
  19. --locked Require Cargo.lock is up to date
  20. -Z FLAG ... Unstable (nightly-only) flags to Cargo
  21.  
  22. Some common cargo commands are (see all commands with --list):
  23. build Compile the current project
  24. check Analyze the current project and report errors, but don't build object files
  25. clean Remove the target directory
  26. doc Build this project's and its dependencies' documentation
  27. new Create a new cargo project
  28. init Create a new cargo project in an existing directory
  29. run Build and execute src/main.rs
  30. test Run the tests
  31. bench Run the benchmarks
  32. update Update dependencies listed in Cargo.lock
  33. search Search registry for crates
  34. publish Package and upload this project to the registry
  35. install Install a Rust binary
  36. uninstall Uninstall a Rust binary
  37.  
  38. See 'cargo help <command>' for more information on a specific command.
  39. pi64 /usr/src/cross/target/release #
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement