From 815d04da602c58ed8b13eeb612fe73180204039d Mon Sep 17 00:00:00 2001 From: HampusM Date: Mon, 26 Feb 2024 20:05:27 +0100 Subject: fix(ecs): make Component trait not automatic & add derive macro --- ecs-macros/Cargo.toml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 ecs-macros/Cargo.toml (limited to 'ecs-macros/Cargo.toml') diff --git a/ecs-macros/Cargo.toml b/ecs-macros/Cargo.toml new file mode 100644 index 0000000..792ca34 --- /dev/null +++ b/ecs-macros/Cargo.toml @@ -0,0 +1,13 @@ +[package] +name = "ecs-macros" +version = "0.1.0" +edition = "2021" + +[lib] +proc-macro = true + +[dependencies] +quote = "1.0.35" +syn = { version = "2.0.51", features = ["full"] } +proc-macro2 = "1.0.78" + -- cgit v1.2.3-18-g5258