diff options
author | HampusM <hampus@hampusmat.com> | 2024-02-28 20:32:35 +0100 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2024-02-28 21:34:18 +0100 |
commit | c1ec41dffb488109740bce2c2354db917fb6c20f (patch) | |
tree | 5755830de21d28c57ca08474779a885337ab2d48 /util-macros/Cargo.toml | |
parent | 815d04da602c58ed8b13eeb612fe73180204039d (diff) |
feat: add utility macros library
Diffstat (limited to 'util-macros/Cargo.toml')
-rw-r--r-- | util-macros/Cargo.toml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/util-macros/Cargo.toml b/util-macros/Cargo.toml new file mode 100644 index 0000000..b8a14e5 --- /dev/null +++ b/util-macros/Cargo.toml @@ -0,0 +1,11 @@ +[package] +name = "util-macros" +version = "0.1.0" +edition = "2021" + +[lib] +proc-macro = true + +[dependencies] +quote = "1.0.35" +proc-macro2 = "1.0.78" |