diff options
author | HampusM <hampus@hampusmat.com> | 2022-07-09 19:57:10 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-07-09 19:57:10 +0200 |
commit | 15d7309072658800339eaba0491ba87ba6e266b2 (patch) | |
tree | f3bdfef0fb5f24e27e0f6803febc58879b6323dd /syrette_macros/Cargo.toml | |
parent | fe4cbae692b873425db562784657daeaa7914772 (diff) |
feat: add DI container
Diffstat (limited to 'syrette_macros/Cargo.toml')
-rw-r--r-- | syrette_macros/Cargo.toml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/syrette_macros/Cargo.toml b/syrette_macros/Cargo.toml index 0d72785..a6966f0 100644 --- a/syrette_macros/Cargo.toml +++ b/syrette_macros/Cargo.toml @@ -6,4 +6,12 @@ authors = ["HampusM <hampus@hampusmat.com>"] description = "Macros for Syrette, the convenient dependency injection library" edition = "2021" +[lib] +proc_macro = true + [dependencies] +syn = { version = "1.0.96", features = ["full"] } +quote = "1.0.18" +proc-macro2 = "1.0.40" +uuid = { version = "0.8", features = ["v4"] } + |