write-ups-challenges-2023-2024/flowrun/solution/Cargo.toml

13 lines
378 B
TOML
Raw Normal View History

2023-11-28 15:24:59 +00:00
[package]
name = "solution"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reqwest = { version = "0.11", features = ["json", "blocking"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.105"
tokio = { version = "1", features = ["full"] }
either = "1.9.0"