I am trying to learn about proc macros, but etting up the project is the hardest part rn 😓
I have created a rust package with --lib called hello_macro
and then created another rust packagae within that package called hello_macro_derive
I have included the hello_macro_derive as a dependency in the cargo.toml of hello_macro
But when in my hello_macro/src/main.rs
I have the following code with a compiler error
use hello_macro::Hello;
#[derive(Hello)]
struct Foo;
fn main() {
let foo = Foo;
println!("{}", foo.name());
// error: no method named `name` found for struct `Foo` in the current scope method not found in `Foo`
}