master
sh 14 lines 184 Bytes
Raw
1 #!/bin/sh
2
3 set -eu
4
5 cat <<EOF
6 // @generated
7 // This file is autogenerated by scripts/rust/rust_root_crate.sh
8
9 #![no_main]
10 EOF
11
12 for crate in $*; do
13 echo "extern crate $crate;"
14 done