16 lines
396 B
TOML
16 lines
396 B
TOML
[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"] }
|
|
|