Code for the Advent of Code event
aoc advent-of-code
at rust 17 lines 421 B view raw
1[package] 2name = "aoc" 3# version = "0.1.0" 4edition = "2024" 5description = "Advent of Code solutions in Rust" 6homepage = "https://github.com/Sharparam/advent-of-code" 7repository = "https://github.com/Sharparam/advent-of-code" 8publish = false 9 10[dependencies] 11clap = { version = "4.4", features = ["derive"] } 12once_cell = "1.19" 13aoc_macros = { path = "aoc_macros" } 14ctor = "0.6.0" 15 16[workspace] 17members = [".", "aoc_macros"]