-
Notifications
You must be signed in to change notification settings - Fork 12
/
Cargo.toml
59 lines (57 loc) · 1.53 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
[package]
name = "gitvote"
description = "GitVote server"
version = "1.3.0"
license = "Apache-2.0"
edition = "2021"
[dependencies]
anyhow = "1.0.91"
askama = "0.12.1"
askama_axum = "0.4.0"
async-channel = "2.3.1"
async-trait = "0.1.83"
axum = { version = "0.7.7", features = ["macros"] }
clap = { version = "4.5.20", features = ["derive"] }
config = "0.13.4"
deadpool-postgres = { version = "0.14.0", features = ["serde"] }
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.8"
serde = { version = "1.0.213", features = ["derive"] }
serde_json = "1.0.132"
serde_yaml = "0.9.34"
sha2 = "0.10.8"
thiserror = "1.0.65"
time = { version = "0.3.36", features = ["serde"] }
tokio = { version = "1.41.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",
] }
tower = { version = "0.5.1", features = ["util"] }
tower-http = { version = "0.6.1", features = ["trace"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "json"] }
uuid = { version = "1.11.0", features = ["serde", "v4"] }
[dev-dependencies]
http-body = "1.0.1"
hyper = "1.5.0"
mockall = "0.13.0"