#!/bin/bash

if [ -f "Cargo.lock" ]; then
    rm Cargo.lock
fi

cargo clean
cargo build --release

echo "Finish!"