diff options
| author | Cody <cody@codyq.dev> | 2023-04-08 03:48:24 -0500 |
|---|---|---|
| committer | Cody <cody@codyq.dev> | 2023-04-08 03:48:24 -0500 |
| commit | 0eadd4c889049bd89b9dff437f1ed477277452fb (patch) | |
| tree | 70d4dcd39e175af93c233910e24379f692028e86 /crates/sloth_bytecode/macros/Cargo.toml | |
| parent | 2970520a9592b5c6d45291f54073552a474b71b4 (diff) | |
| download | sloth-0eadd4c889049bd89b9dff437f1ed477277452fb.tar.gz | |
Started on lexer
Diffstat (limited to 'crates/sloth_bytecode/macros/Cargo.toml')
| -rw-r--r-- | crates/sloth_bytecode/macros/Cargo.toml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/crates/sloth_bytecode/macros/Cargo.toml b/crates/sloth_bytecode/macros/Cargo.toml new file mode 100644 index 0000000..c75bc58 --- /dev/null +++ b/crates/sloth_bytecode/macros/Cargo.toml @@ -0,0 +1,13 @@ +[package] +name = "sloth_bytecode_macros" +version = "0.1.0" +edition = "2021" + +[dependencies] +proc-macro2 = "1.0.54" +quote = "1.0.26" +syn = "2.0.12" + +[lib] +proc-macro = true + |
