feat(high_level_api): add casting primitives for compact public key

This commit is contained in:
Arthur Meyre
2024-06-14 23:20:17 +02:00
parent bd674fe5bc
commit 9242b2a725
41 changed files with 1606 additions and 496 deletions

View File

@@ -45,6 +45,11 @@ if [[ "${CARGO_PROFILE}" == "" ]]; then
exit 1
fi
if [[ "${CARGO_PROFILE}" == "dev" ]]; then
# dev gets remapped
CARGO_PROFILE="debug"
fi
UNAME="$(uname)"
if [[ "${UNAME}" != "Linux" && "${UNAME}" != "Darwin" ]]; then
echo "This script is compatible with Linux and macOS and may not work for your system"