Advent of Code solutions
at main 13 lines 301 B view raw
1[package] 2name = "macros" 3version = "0.1.0" 4edition = "2021" 5 6# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 8[lib] 9proc-macro = true 10 11[dependencies] 12advent_core = { path = "../advent_core" } 13advent-hack = { version = "0.1", path = "../advent-hack" }