adventofcode-2020/day-11/Cargo.toml
Tristan Daniël Maat 5a7cd20ca6
Re-implement day 11.1 with graphs
This is to have a potentially nicer way to iterate neighbours, as well
as recursive directions.

While the former is neater than it was previously, the latter sadly
wasn't possible after all, and it's very inefficient.
2020-12-15 20:39:20 +00:00

12 lines
257 B
TOML

[package]
name = "day-11"
version = "0.1.0"
authors = ["Tristan Daniël Maat <tm@tlater.net>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
indoc = "0.3"
petgraph = "0.5"