Remove Rust spinning square example

It needs to be updated for both the new FIDL bindings and Mozart 2 so it
is not a good example right now. I will bring it back when it makes sense
to have a Rust example of a Mozart client module in Topaz.

Change-Id: I7a4cd201895b92dae57173392cb4afbdc97e7fa2
1 file changed
tree: b10588e0d3693b0d9a4d041619c6f19371afa761
  1. devshell/
  2. gce/
  3. gdb/
  4. grubdisk/
  5. installer/
  6. make-fuchsia-vol/
  7. memory/
  8. rust/
  9. vbox/
  10. vim/
  11. zsh-completion/
  12. .gitignore
  13. AUTHORS
  14. build-bootable-rpi3-sdcard.sh
  15. build-bootable-usb-gigaboot.sh
  16. build-qemu.sh
  17. build-sysroot.sh
  18. build-zircon.sh
  19. build_cargo_vendor.sh
  20. check-header-guards.py
  21. check_build_status.py
  22. check_rust_licenses.py
  23. colorize_logs
  24. CONTRIBUTING.md
  25. env.sh
  26. generate-intellij-config.py
  27. git-file-format
  28. git-file-tidy
  29. git_utils.py
  30. install_cargo_vendor.sh
  31. jiri_update_if_green.py
  32. LICENSE
  33. makesdk.go
  34. PATENTS
  35. paths.py
  36. push-package.py
  37. README.md
  38. run-dart-action.py
  39. run-zircon-arm64
  40. run-zircon-x86-64
  41. run.py
  42. start-dhcp-server.sh
  43. symlink-dot-packages.py
  44. update-manifest.go
  45. update_dart_packages.py
  46. update_rust_crates.py
  47. visualize_module_tree.py
  48. zirconize.sed
  49. zirconize.sh
README.md

Scripts

This repository is for scripts useful when hacking on Fuchsia. This repository should contain scripts that perform tasks spanning multiple repositories. Scripts that only operate within a single repository should live in the relevant repository.

push-package.py

The push-package.py script pushes all of the files in a particular package. No checking is performed for incremental changes.

The sample command lines below can be used to build the “modular” package and then push it to the default device. This assumes you have already booted your device with a version of Fuchsia that contains the most recent version of all other packages.

fbuild apps/modular
scripts/push-package.py -o $FUCHSIA_BUILD_DIR packages/gn/modular

fpublish

fpublish from env.sh will take a package from the build and create a Fuchsia package manager package from a build package. It will then add the package to a local update respository which, by default, is put at ${FUCHSIA_BUILD_DIR}/amber-files. It will also add the package content files to the update repository and name these file after their Merkle Root. If a package name is supplied to fpublish, only that package will be processed. If no name is supplied, all the packages made by the build will be included.