bevy/tools/publish.sh
Carter Anderson 9898469e9e Sub app label changes (#2717)
Makes some tweaks to the SubApp labeling introduced in #2695:

* Ergonomics improvements
* Removes unnecessary allocation when retrieving subapp label
* Removes the newly added "app macros" crate in favor of bevy_derive
* renamed RenderSubApp to RenderApp

@zicklag (for reference)
2021-08-24 06:37:28 +00:00

45 lines
736 B
Bash

# if crate A depends on crate B, B must come before A in this list
crates=(
bevy_utils
bevy_macro_utils
bevy_derive
bevy_math
bevy_tasks
bevy_ecs/macros
bevy_ecs
bevy_app
bevy_log
bevy_dynamic_plugin
bevy_reflect/bevy_reflect_derive
bevy_reflect
bevy_asset
bevy_audio
bevy_core
bevy_diagnostic
bevy_transform
bevy_window
bevy_render
bevy_input
bevy_gilrs
bevy_pbr
bevy_gltf
bevy_scene
bevy_sprite
bevy_text
bevy_ui
bevy_winit
bevy_wgpu
bevy_internal
bevy_dylib
)
cd crates
for crate in "${crates[@]}"
do
echo "Publishing ${crate}"
(cd $crate; cargo publish --no-verify)
sleep 20
done
cd ..
cargo publish