Move binaries from src/bin into their own crate

This commit is contained in:
Michael Vines
2018-12-13 21:11:09 -08:00
parent 092edabd2d
commit 0fe6d61036
19 changed files with 234 additions and 40 deletions

View File

@@ -5,8 +5,24 @@
set -e
cd "$(dirname "$0")/.."
set -x
cargo install --path drone "$@"
cargo install --path keygen "$@"
cargo install --path . "$@"
cargo install --path fullnode "$@"
SECONDS=0
CRATES=(
drone
keygen
fullnode
bench-streamer
bench-tps
fullnode-config
genesis
ledger-tool
wallet
)
for crate in "${CRATES[@]}"; do
(
set -x
cargo install --path "$crate" "$@"
)
done
echo "Done after $SECONDS seconds"