All checks were successful
Build and Test / build-editions (fast-racing-neo) (push) Successful in 9m41s
Build and Test / build-editions (minecraft-wiiu) (push) Successful in 9m46s
Build and Test / build-editions (DATABASE_FRIENDS, friends) (push) Successful in 12m50s
Build and Test / build-editions (mario-tennis) (push) Successful in 12m47s
Build and Test / build-editions (DATABASE_SMM, super-mario-maker) (push) Successful in 15m7s
Build and Test / build-editions (DATABASE_SMM, wii-sports-club) (push) Successful in 15m29s
Build and Test / build-editions (sonic-transformed) (push) Successful in 8m30s
Build and Test / build-editions (DATABASE_SMM, puyopuyo) (push) Successful in 15m48s
Build and Test / build-editions (terraria) (push) Successful in 7m46s
Build and Test / build-editions (splatoon-testfire) (push) Successful in 7m49s
Build and Test / build-editions (splatoon) (push) Successful in 7m49s
Build and Test / build-editions (wii-u-chat) (push) Successful in 7m40s
19 lines
428 B
TOML
19 lines
428 B
TOML
[package]
|
|
name = "rnex-rmc-macros"
|
|
version = "0.0.0"
|
|
authors = ["RusticMaple <tvnebel@gmail.com>"]
|
|
description = "A `cargo generate` template for quick-starting a procedural macro crate"
|
|
keywords = ["template", "proc_macro", "procmacro"]
|
|
edition = "2024"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
quote = "1.0.38"
|
|
proc-macro2 = "1.0.93"
|
|
syn = { version = "3.0.0", features = ["full"] }
|