-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
38 lines (34 loc) · 897 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[package]
name = "github-stats-rs"
version = "0.1.0"
edition = "2021"
[profile.release]
lto = "thin"
[lib]
path = "src/lib.rs"
[[bin]]
name = "github-stats-rs"
path = "src/main.rs"
[dependencies]
anyhow = "1.0.93"
chrono = { version = "0.4.38", features = ["serde"] }
confique = { version = "0.3.0", features = ["yaml"] }
derive_builder = "0.20.2"
dotenvy = "0.15.7"
graphql_client = { version = "0.14.0", features = [
"reqwest",
"reqwest-blocking",
] }
regex = "1.11.1"
reqwest = { version = "0.11.27", features = ["json", "blocking"] }
secrecy = { version = "0.10.3", features = ["serde"] }
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
tokio = { version = "1.41.1", features = ["full"] }
tracing = "0.1.40"
tracing-bunyan-formatter = "0.3.9"
tracing-log = "0.2.0"
tracing-subscriber = { version = "0.3.18", features = [
"env-filter",
"registry",
] }