refactor for yearly
This commit is contained in:
parent
da00eb3606
commit
dddda24957
57 changed files with 3 additions and 0 deletions
39
2023/Cargo.toml
Normal file
39
2023/Cargo.toml
Normal file
|
@ -0,0 +1,39 @@
|
|||
[package]
|
||||
name = "aoc23"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
async-recursion = "1.0.5"
|
||||
expanduser = "1.2.2"
|
||||
futures = "0.3"
|
||||
regex = "1.9"
|
||||
reqwest = { version = "0.11", features = [
|
||||
"json",
|
||||
"gzip",
|
||||
"brotli",
|
||||
"deflate",
|
||||
"stream",
|
||||
"cookies",
|
||||
] }
|
||||
reqwest-middleware = "0.2"
|
||||
reqwest-retry = "0.3"
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_json = "1"
|
||||
tiktoken-rs = "0.5"
|
||||
tokio = { version = "1", features = ["full"] }
|
||||
itertools = "0.12"
|
||||
derive_builder = "0.12.0"
|
||||
rayon = "1.8.0"
|
||||
static_init = "1.0.3"
|
||||
grid = { version = "0.12.0", features = ["std", "serde"] }
|
||||
indicatif = "0.17.7"
|
||||
pathfinding = "4.6.0"
|
||||
geo = { version = "0.27.0", features = ["serde"] }
|
||||
|
||||
[features]
|
||||
part1 = []
|
||||
part2 = []
|
||||
default = ["part1"]
|
Loading…
Add table
Add a link
Reference in a new issue