install_tool.sh 391 B

1234567891011121314151617181920
  1. #!/bin/sh
  2. #targets
  3. rustup target add x86_64-apple-darwin
  4. #tools
  5. echo 'install tools'
  6. rustup component add rustfmt
  7. cargo install cargo-expand
  8. cargo install cargo-watch
  9. cargo install cargo-cache
  10. cargo install bunyan
  11. #protobuf code gen env
  12. brew install [email protected]
  13. brew tap dart-lang/dart
  14. brew install dart
  15. pub global activate protoc_plugin
  16. cargo install --version 2.20.0 protobuf-codegen