51 lines
784 B
TOML
51 lines
784 B
TOML
[package]
|
|
name = "aoc-2025"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
nalgebra = "0.34.1"
|
|
|
|
[[bin]]
|
|
name = "1-secret-entrance"
|
|
path = "src/1-secret-entrance.rs"
|
|
|
|
[[bin]]
|
|
name = "2-gift-shop"
|
|
path = "src/2-gift-shop.rs"
|
|
|
|
[[bin]]
|
|
name = "3-lobby"
|
|
path = "src/3-lobby.rs"
|
|
|
|
[[bin]]
|
|
name = "4-printing-department"
|
|
path = "src/4-printing-department.rs"
|
|
|
|
[[bin]]
|
|
name = "5-cafeteria"
|
|
path = "src/5-cafeteria.rs"
|
|
|
|
[[bin]]
|
|
name = "6-trash-compactor"
|
|
path = "src/6-trash-compactor.rs"
|
|
|
|
[[bin]]
|
|
name = "7-laboratories"
|
|
path = "src/7-laboratories.rs"
|
|
|
|
[[bin]]
|
|
name = "8-playground"
|
|
path = "src/8-playground.rs"
|
|
|
|
[[bin]]
|
|
name = "9-movie-theater"
|
|
path = "src/9-movie-theater.rs"
|
|
|
|
[[bin]]
|
|
name = "10-factory"
|
|
path = "src/10-factory.rs"
|
|
|
|
[[bin]]
|
|
name = "11-reactor"
|
|
path = "src/11-reactor.rs" |