summary refs log tree commit diff stats
path: root/scripts/rust/rust_root_crate.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/rust/rust_root_crate.sh')
-rwxr-xr-xscripts/rust/rust_root_crate.sh13
1 files changed, 0 insertions, 13 deletions
diff --git a/scripts/rust/rust_root_crate.sh b/scripts/rust/rust_root_crate.sh
deleted file mode 100755
index 975bddf7f1..0000000000
--- a/scripts/rust/rust_root_crate.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/sh
-
-set -eu
-
-cat <<EOF
-// @generated
-// This file is autogenerated by scripts/rust_root_crate.sh
-
-EOF
-
-for crate in $*; do
-    echo "extern crate $crate;"
-done