rust_root_crate.sh 167 B

12345678910111213
  1. #!/bin/sh
  2. set -eu
  3. cat <<EOF
  4. // @generated
  5. // This file is autogenerated by scripts/rust_root_crate.sh
  6. EOF
  7. for crate in $*; do
  8. echo "extern crate $crate;"
  9. done