You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/usr/bin/env bash
|
|
|
|
set -eux
|
|
|
|
cd $(dirname $0)/derive
|
|
|
|
cargo publish
|
|
|
|
cd ..
|
|
|
|
# Let the crates.io index figure out we've published `derive_arbitrary` already.
|
|
sleep 5
|
|
|
|
cargo publish
|