# Objective - Our crevice is still called "crevice", which we can't use for a release - Users would need to use our "crevice" directly to be able to use the derive macro ## Solution - Rename crevice to bevy_crevice, and crevice-derive to bevy-crevice-derive - Re-export it from bevy_render, and use it from bevy_render everywhere - Fix derive macro to work either from bevy_render, from bevy_crevice, or from bevy ## Remaining - It is currently re-exported as `bevy::render::bevy_crevice`, is it the path we want? - After a brief suggestion to Cart, I changed the version to follow Bevy version instead of crevice, do we want that? - Crevice README.md need to be updated - in the `Cargo.toml`, there are a few things to change. How do we want to change them? How do we keep attributions to original Crevice? ``` authors = ["Lucien Greathouse <me@lpghatguy.com>"] documentation = "https://docs.rs/crevice" homepage = "https://github.com/LPGhatguy/crevice" repository = "https://github.com/LPGhatguy/crevice" ``` Co-authored-by: François <8672791+mockersf@users.noreply.github.com> Co-authored-by: Carter Anderson <mcanders1@gmail.com>
		
			
				
	
	
		
			48 lines
		
	
	
		
			801 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			801 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_crevice/bevy-crevice-derive
 | 
						|
    bevy_crevice
 | 
						|
    bevy_render
 | 
						|
    bevy_core_pipeline
 | 
						|
    bevy_input
 | 
						|
    bevy_gilrs
 | 
						|
    bevy_pbr
 | 
						|
    bevy_gltf
 | 
						|
    bevy_scene
 | 
						|
    bevy_sprite
 | 
						|
    bevy_text
 | 
						|
    bevy_ui
 | 
						|
    bevy_winit
 | 
						|
    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
 |