13 lines
309 B
TOML
13 lines
309 B
TOML
[package]
|
|
name = "rush_macro"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
# wait to add this until later bc Rust errors
|
|
# until it works.
|
|
#[lib]
|
|
#proc-macro = true
|
|
|
|
[dependencies]
|
|
syn = { version = "2.0.100" } # rust code from string -> data structure
|
|
quote = { version = "1.0.40" } # syn data structures to rust code |