2020-08-10 01:32:03 +00:00
|
|
|
# if crate A depends on crate B, B must come before A in this list
|
2020-08-10 00:58:56 +00:00
|
|
|
crates=(
|
2020-09-19 22:29:08 +00:00
|
|
|
bevy_utils
|
2021-05-19 19:03:36 +00:00
|
|
|
bevy_macro_utils
|
2020-08-10 01:32:03 +00:00
|
|
|
bevy_derive
|
|
|
|
bevy_math
|
2020-09-19 22:29:08 +00:00
|
|
|
bevy_tasks
|
2022-04-15 18:05:37 +00:00
|
|
|
bevy_reflect/bevy_reflect_derive
|
|
|
|
bevy_reflect
|
2020-12-19 19:28:00 +00:00
|
|
|
bevy_ecs/macros
|
2020-08-10 01:32:03 +00:00
|
|
|
bevy_ecs
|
2020-08-10 00:58:56 +00:00
|
|
|
bevy_app
|
2020-12-19 19:28:00 +00:00
|
|
|
bevy_log
|
2020-10-01 20:04:06 +00:00
|
|
|
bevy_dynamic_plugin
|
2020-08-10 00:58:56 +00:00
|
|
|
bevy_asset
|
|
|
|
bevy_audio
|
|
|
|
bevy_core
|
|
|
|
bevy_diagnostic
|
2022-04-15 18:05:37 +00:00
|
|
|
bevy_hierarchy
|
2020-08-10 01:32:03 +00:00
|
|
|
bevy_transform
|
|
|
|
bevy_window
|
2021-12-23 22:49:12 +00:00
|
|
|
bevy_crevice/bevy-crevice-derive
|
|
|
|
bevy_crevice
|
2020-08-10 01:32:03 +00:00
|
|
|
bevy_render
|
2021-12-14 03:58:23 +00:00
|
|
|
bevy_core_pipeline
|
2020-08-10 00:58:56 +00:00
|
|
|
bevy_input
|
2020-09-19 22:29:08 +00:00
|
|
|
bevy_gilrs
|
2022-04-15 18:05:37 +00:00
|
|
|
bevy_animation
|
2020-08-10 00:58:56 +00:00
|
|
|
bevy_pbr
|
2020-11-03 21:34:00 +00:00
|
|
|
bevy_gltf
|
2020-08-10 00:58:56 +00:00
|
|
|
bevy_scene
|
|
|
|
bevy_sprite
|
|
|
|
bevy_text
|
|
|
|
bevy_ui
|
|
|
|
bevy_winit
|
2020-12-19 19:28:00 +00:00
|
|
|
bevy_internal
|
|
|
|
bevy_dylib
|
2020-08-10 00:58:56 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
cd crates
|
|
|
|
for crate in "${crates[@]}"
|
|
|
|
do
|
|
|
|
echo "Publishing ${crate}"
|
2021-08-13 21:57:23 +00:00
|
|
|
(cd "$crate"; cargo publish --no-verify)
|
2020-11-03 21:34:00 +00:00
|
|
|
sleep 20
|
2020-08-10 01:32:03 +00:00
|
|
|
done
|
|
|
|
|
|
|
|
cd ..
|
2021-08-13 21:57:23 +00:00
|
|
|
cargo publish
|