diff options
Diffstat (limited to 'ptx_parser_macros/Cargo.toml')
-rw-r--r-- | ptx_parser_macros/Cargo.toml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/ptx_parser_macros/Cargo.toml b/ptx_parser_macros/Cargo.toml new file mode 100644 index 0000000..62a5081 --- /dev/null +++ b/ptx_parser_macros/Cargo.toml @@ -0,0 +1,17 @@ +[package] +name = "ptx_parser_macros" +version = "0.0.0" +authors = ["Andrzej Janik <[email protected]>"] +edition = "2021" + +[lib] +proc-macro = true + +[dependencies] +ptx_parser_macros_impl = { path = "../ptx_parser_macros_impl" } +convert_case = "0.6.0" +rustc-hash = "2.0.0" +syn = "2.0.67" +quote = "1.0" +proc-macro2 = "1.0.86" +either = "1.13.0" |