This commit is contained in:
foosinn 2020-05-27 13:10:49 +02:00
parent d42a9178da
commit 450a6b4f8a
3 changed files with 39 additions and 0 deletions

32
Cargo.lock generated
View file

@ -3,3 +3,35 @@
[[package]]
name = "aoc2019"
version = "0.1.0"
dependencies = [
"ncurses",
]
[[package]]
name = "cc"
version = "1.0.54"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7bbb73db36c1246e9034e307d0fba23f9a2e251faa47ade70c1bd252220c8311"
[[package]]
name = "libc"
version = "0.2.71"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9457b06509d27052635f90d6466700c65095fdf75409b3fbdd903e988b886f49"
[[package]]
name = "ncurses"
version = "5.99.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "15699bee2f37e9f8828c7b35b2bc70d13846db453f2d507713b758fabe536b82"
dependencies = [
"cc",
"libc",
"pkg-config",
]
[[package]]
name = "pkg-config"
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "05da548ad6865900e60eaba7f589cc0783590a92e940c26953ff81ddbab2d677"

View file

@ -4,6 +4,8 @@ version = "0.1.0"
authors = ["Stefan Schwarz <stefan@f2o.io>"]
edition = "2018"
[dependencies]
ncurses = "5.99.0"
[profile.release]
debug = true
@ -48,6 +50,10 @@ path = "src/day11/main.rs"
name = "day12"
path = "src/day12/main.rs"
[[bin]]
name = "day13"
path = "src/day13/main.rs"
[[bin]]
name = "day14"
path = "src/day14/main.rs"

1
input13 Normal file

File diff suppressed because one or more lines are too long