-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathCargo.toml
More file actions
70 lines (68 loc) · 1.91 KB
/
Cargo.toml
File metadata and controls
70 lines (68 loc) · 1.91 KB
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
62
63
64
65
66
67
68
69
70
[package]
name = "gitvote"
description = "GitVote server"
version = "1.5.0"
license = "Apache-2.0"
edition = "2024"
rust-version = "1.93.1"
[dependencies]
anyhow = "1.0.102"
askama = { version = "0.15.4", features = ["serde_json"] }
async-channel = "2.5.0"
async-trait = "0.1.89"
axum = { version = "0.8.8", features = ["macros"] }
cached = { version = "0.56.0", features = ["async"] }
clap = { version = "4.5.60", features = ["derive"] }
deadpool-postgres = { version = "0.14.1", features = ["serde"] }
figment = { version = "0.10.19", features = ["yaml", "env"] }
futures = "0.3.32"
graphql_client = { version = "0.16.0", features = ["reqwest-rustls"] }
hex = "0.4.3"
hmac = "0.12.1"
http = "1.4.0"
humantime = "2.3.0"
humantime-serde = "1.1.1"
ignore = "0.4.25"
jsonwebtoken = "10.3.0"
octocrab = { version = "0.49.5", default-features = false, features = [
"default-client",
"follow-redirect",
"jwt-rust-crypto",
"retry",
"rustls",
"rustls-aws-lc-rs",
"timeout",
"tracing",
] }
regex = "1.12.3"
reqwest = "0.13.2"
rustls = "0.23.37"
rustls-platform-verifier = "0.6.2"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
serde_yaml = "0.9.34"
sha2 = "0.10.9"
thiserror = "2.0.18"
time = { version = "0.3.47", features = ["serde"] }
tokio = { version = "1.50.0", features = [
"macros",
"rt-multi-thread",
"signal",
"time",
] }
tokio-postgres = { version = "0.7.16", features = [
"with-uuid-1",
"with-serde_json-1",
"with-time-0_3",
] }
tokio-postgres-rustls = "0.13.0"
tokio-util = { version = "0.7.18", features = ["rt"] }
tower = { version = "0.5.3", features = ["util"] }
tower-http = { version = "0.6.8", features = ["trace"] }
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.22", features = ["env-filter", "json"] }
uuid = { version = "1.21.0", features = ["serde", "v4"] }
[dev-dependencies]
http-body = "1.0.1"
hyper = "1.8.1"
mockall = "0.14.0"