shine_component_derive 0.1.0

Implementation of #[derive(Component)] for Shine
Documentation

This crate provides Shine's component derive macros:

use shine::{Component};
#[derive(Component)]
struct FooComponent {
#[injected]
bar: Injected<BarComponent>
}

Please refer the Component Trait doc to understand details.