advent-of-code/challenge/Cargo.toml

14 lines
407 B
TOML
Raw Normal View History

2022-11-27 03:37:13 +00:00
[package]
name = "challenge"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2022-11-27 04:01:00 +00:00
reqwest = { version = "0.11", features = [ "cookies", "json" ] }
tokio = { version = "1.22", features = [ "full" ] }
serde = { version = "1.0" }
serde_json = { version = "1.0" }
serde_yaml = { version = "0.9" }