advent-of-code/2020/Cargo.toml

19 lines
435 B
TOML
Raw Normal View History

[package]
2020-12-08 11:32:59 +01:00
name = "aoc2020"
version = "0.1.0"
authors = ["kageru <kageru@encode.moe>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2020-12-08 11:32:59 +01:00
itertools = "0.9.0"
2020-12-04 15:13:15 +01:00
lazy_static = "1.4.0"
regex = "1.4.2"
2020-12-08 11:32:59 +01:00
text_io = "0.1.8"
# for the day 4 meme solution
serde = { version = "1.0.117", features = ["derive"] }
serde_yaml = "0.8.14"
2020-12-10 14:01:25 +01:00
paste = "1.0.3"
2020-12-11 10:18:58 +01:00
impl_ops = "0.1.1"