Create initial reflection system

This commit is contained in:
Werner
2021-12-23 08:46:30 -03:00
parent aa549e37ef
commit 19eebb4085
10 changed files with 174 additions and 0 deletions

20
Cargo.toml Normal file

@ -0,0 +1,20 @@
[package]
name = "reflection"
version = "0.0.1"
description = "Reflection"
repository = "https://github.com/GuilhermeWerner/Reflection"
license = "MIT"
edition = "2021"
publish = false
[lib]
name = "Reflection"
crate-type = ["rlib"]
path = "Source/lib.rs"
[workspace]
members = ["Macros"]
[dependencies]
reflection-macros = { path = "Macros" }
anyhow = "1.0"