-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathCargo.toml
61 lines (59 loc) · 1.65 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[package]
name = "gitvote"
description = "GitVote server"
version = "1.4.0"
license = "Apache-2.0"
edition = "2021"
rust-version = "1.83"
[dependencies]
anyhow = "1.0.94"
askama = "0.12.1"
askama_axum = "0.4.0"
async-channel = "2.3.1"
async-trait = "0.1.83"
axum = { version = "0.7.9", features = ["macros"] }
clap = { version = "4.5.23", features = ["derive"] }
deadpool-postgres = { version = "0.14.0", features = ["serde"] }
figment = { version = "0.10.19", features = ["yaml", "env"] }
futures = "0.3.31"
graphql_client = { version = "0.14.0", features = ["reqwest"] }
hex = "0.4.3"
hmac = "0.12.1"
http = "0.2.12"
humantime = "2.1.0"
humantime-serde = "1.1.1"
ignore = "0.4.23"
jsonwebtoken = "9.3.0"
lazy_static = "1.5.0"
octocrab = "=0.33.3"
openssl = { version = "0.10.68", features = ["vendored"] }
postgres-openssl = "0.5.0"
regex = "1.11.1"
reqwest = "0.12.9"
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
serde_yaml = "0.9.34"
sha2 = "0.10.8"
thiserror = "2.0.6"
time = { version = "0.3.37", features = ["serde"] }
tokio = { version = "1.42.0", features = [
"macros",
"rt-multi-thread",
"signal",
"time",
] }
tokio-postgres = { version = "0.7.12", features = [
"with-uuid-1",
"with-serde_json-1",
"with-time-0_3",
] }
tokio-util = { version = "0.7.13", features = ["rt"] }
tower = { version = "0.5.1", features = ["util"] }
tower-http = { version = "0.6.2", features = ["trace"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.19", features = ["env-filter", "json"] }
uuid = { version = "1.11.0", features = ["serde", "v4"] }
[dev-dependencies]
http-body = "1.0.1"
hyper = "1.5.1"
mockall = "0.13.1"