github-status/Cargo.toml

15 lines
472 B
TOML
Raw Normal View History

2022-10-13 20:10:18 +02:00
[package]
name = "github-status"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-03-12 20:56:50 +01:00
chrono = "0.4.24"
2023-03-28 20:13:31 +02:00
clap = { version = "4.2.0", features = ["derive", "env"] }
2022-10-13 20:10:18 +02:00
eyre = "0.6.8"
2023-02-15 18:03:14 +01:00
graphql_client = { version = "0.12.0", features = ["reqwest", "reqwest-blocking"] }
2023-03-27 18:07:22 +02:00
reqwest = { version = "0.11.16", features = ["blocking"] }
2023-03-28 08:24:22 +02:00
serde = { version = "1.0.159", features = ["derive"] }