feat: add itertools as default dep

This commit is contained in:
Matej Janezic 2022-11-28 21:59:48 +01:00
parent 00000030b4
commit 000000400d
Signed by: janezicmatej
GPG Key ID: 4298E230ED37B2C0
2 changed files with 17 additions and 0 deletions

16
Cargo.lock generated
View File

@ -7,6 +7,7 @@ name = "aoc"
version = "0.1.0"
dependencies = [
"dotenv",
"itertools",
"pico-args",
"reqwest",
]
@ -75,6 +76,12 @@ version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f"
[[package]]
name = "either"
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797"
[[package]]
name = "encoding_rs"
version = "0.8.31"
@ -311,6 +318,15 @@ version = "2.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f88c5561171189e69df9d98bcf18fd5f9558300f7ea7b801eb8a0fd748bd8745"
[[package]]
name = "itertools"
version = "0.10.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
dependencies = [
"either",
]
[[package]]
name = "itoa"
version = "1.0.4"

View File

@ -10,6 +10,7 @@ default-run = "aoc"
[dependencies]
# framework
dotenv = "0.15.0"
itertools = "0.10.5"
pico-args = "0.5.0"
reqwest = { version = "0.11.13", features = ["blocking"] }
# for solving