diff options
author | HampusM <hampus@hampusmat.com> | 2022-11-11 22:52:30 +0100 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-11-11 22:52:30 +0100 |
commit | 7793779ce197fa0c917d0ef312bfa9bcfcb64790 (patch) | |
tree | d63d99d659e575fe6d833d95b58503b6cb39293f /test_util_macros/Cargo.toml | |
parent | de5aca66532272a84aeb04cac02bd25bb7afc414 (diff) |
test: add unit test for create_caster_fn_ident
Diffstat (limited to 'test_util_macros/Cargo.toml')
-rw-r--r-- | test_util_macros/Cargo.toml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test_util_macros/Cargo.toml b/test_util_macros/Cargo.toml new file mode 100644 index 0000000..8848961 --- /dev/null +++ b/test_util_macros/Cargo.toml @@ -0,0 +1,11 @@ +[package] +name = "test_util_macros" +version = "0.1.0" +edition = "2021" + +[lib] +proc_macro = true + +[dependencies] +syn = { version = "1.0.96", features = ["full"] } +quote = "1.0.18" |