parse header

This commit is contained in:
nora 2023-02-11 18:33:34 +01:00
parent b4e6836e04
commit ee1a18f7c3
7 changed files with 227 additions and 1 deletions

8
test_data/create_test_data.sh Executable file
View file

@ -0,0 +1,8 @@
#!/usr/bin/env bash
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
for rust_file in $SCRIPT_DIR/*.rs; do
# Use -Cprefer-dynamic to keep the binary small
rustc --edition 2021 "$rust_file" -Cprefer-dynamic -Copt-level=3 --out-dir="$SCRIPT_DIR/out"
done