Prepare v0.1.1 release for crates.io
- Rename `macros` crate to `libmarathon-macros` for better discoverability on crates.io - Update all imports from `macros::` to `libmarathon_macros::` - Add crates.io metadata (description, license, repository, homepage, etc.) - Bump version to 0.1.1 - Add version requirement for libmarathon-macros dependency
This commit is contained in:
@@ -11,7 +11,7 @@ headless = []
|
||||
|
||||
[dependencies]
|
||||
libmarathon = { path = "../libmarathon" }
|
||||
macros = { path = "../macros" }
|
||||
libmarathon-macros = { path = "../macros" }
|
||||
inventory.workspace = true
|
||||
rkyv.workspace = true
|
||||
bevy = { version = "0.17.2", default-features = false, features = [
|
||||
|
||||
@@ -8,7 +8,7 @@ use uuid::Uuid;
|
||||
///
|
||||
/// This component contains all the data needed for rendering a cube.
|
||||
/// The `#[synced]` attribute automatically handles network synchronization.
|
||||
#[macros::synced]
|
||||
#[libmarathon_macros::synced]
|
||||
pub struct CubeMarker {
|
||||
/// RGB color values (0.0 to 1.0)
|
||||
pub color_r: f32,
|
||||
|
||||
Reference in New Issue
Block a user