wip: first commit

This commit is contained in:
Alexander Navarro 2025-05-01 19:21:41 -04:00
commit 98448060b9
24 changed files with 709 additions and 0 deletions

16
Cargo.toml Normal file
View file

@ -0,0 +1,16 @@
[package]
name = "vite_manifest"
version = "0.0.0"
authors = ["aleidk <ale.navarro.parra@gmail.com>"]
description = "A `cargo generate` template for quick-starting a procedural macro crate"
keywords = ["template", "proc_macro", "procmacro"]
edition = "2018"
[lib]
proc-macro = true
[dependencies]
quote = "1"
proc-macro2 = "1.0"
syn = { version = "2.0.101", features = ["parsing", "derive"] }