diff options
| author | 2026-01-23 20:56:19 +0800 | |
|---|---|---|
| committer | 2026-01-23 20:56:19 +0800 | |
| commit | 410c949b87424b4ac0df5e3f38930781c6eda147 (patch) | |
| tree | dcf787cf8c47e363b6e5e7c54cd0e86a094a2e07 /crates/macros/Cargo.toml | |
| parent | 9430bee86fbf943283eb5a6f63bd750b875ff433 (diff) | |
| download | DropOut-410c949b87424b4ac0df5e3f38930781c6eda147.tar.gz DropOut-410c949b87424b4ac0df5e3f38930781c6eda147.zip | |
feat(client): add tauri api macros
Diffstat (limited to 'crates/macros/Cargo.toml')
| -rw-r--r-- | crates/macros/Cargo.toml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/crates/macros/Cargo.toml b/crates/macros/Cargo.toml new file mode 100644 index 0000000..cd5b4a6 --- /dev/null +++ b/crates/macros/Cargo.toml @@ -0,0 +1,16 @@ +[package] +name = "dropout-macros" +version = "0.1.0" +edition = "2021" +description = "Proc-macro crate providing #[dropout::api] for generating Tauri TypeScript bindings" +license = "MIT OR Apache-2.0" +publish = false + +[lib] +proc-macro = true + +[dependencies] +proc-macro2 = "1.0" +quote = "1.0" +syn = { version = "2.0", features = ["full"] } +heck = "0.4" |