mirror of
https://github.com/aljazceru/cdk.git
synced 2025-12-19 21:55:03 +01:00
* Remove `wallet` and `mint` features from `nuts` module * Sort dependencies in ASC order * Fix `check-docks.sh` script Closes https://github.com/cashubtc/cdk/issues/88 Closes https://github.com/cashubtc/cdk/issues/87 Signed-off-by: Yuki Kishimoto <yukikishimoto@protonmail.com>
14 lines
174 B
Bash
Executable File
14 lines
174 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
buildargs=(
|
|
"-p cdk"
|
|
)
|
|
|
|
for arg in "${buildargs[@]}"; do
|
|
echo "Checking '$arg' docs"
|
|
cargo doc $arg --all-features
|
|
echo
|
|
done
|