diff options
| author | 2026-02-28 09:03:19 +0800 | |
|---|---|---|
| committer | 2026-02-28 09:03:19 +0800 | |
| commit | cc53b1cf260e1c67939e50608ef18764da616d55 (patch) | |
| tree | 119109c62331d4d26612e2df7726cee82d1871f5 /crates/macros/Cargo.toml | |
| parent | ee37d044e473217daadd9ce26c7e2e2ad39a0490 (diff) | |
| parent | 81a62402ef6f8900ff092366121a9b7a4263ba52 (diff) | |
| download | DropOut-cc53b1cf260e1c67939e50608ef18764da616d55.tar.gz DropOut-cc53b1cf260e1c67939e50608ef18764da616d55.zip | |
Merge remote-tracking branch 'upstream/main'
Diffstat (limited to 'crates/macros/Cargo.toml')
| -rw-r--r-- | crates/macros/Cargo.toml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/crates/macros/Cargo.toml b/crates/macros/Cargo.toml new file mode 100644 index 0000000..54f64f7 --- /dev/null +++ b/crates/macros/Cargo.toml @@ -0,0 +1,18 @@ +[package] +name = "dropout-macros" +version = "0.1.0-alpha.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] +darling = { version = "0.23.0", features = ["serde"] } +heck = "0.4" +inventory = "0.3" +proc-macro2 = "1.0" +quote = "1.0" +syn = { version = "2.0", features = ["full"] } |