Code & Deploy
siGit Code
Git Hosting
Toggle menu
Code
Code Review
Models
Repos
Sign in
Sign in
@samitouri
/
QOSamiQemu
QOSamiQemu
/
scripts
/
rust
/
rust_root_crate.sh
Code
Commits
Issues
Pulls
Sessions
CI/CD
master
master
sh
14 lines
184 Bytes
Copy permalink
Copy
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