forked from cncf/gitjobs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
82 lines (80 loc) · 2.55 KB
/
Copy pathCargo.toml
File metadata and controls
82 lines (80 loc) · 2.55 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
71
72
73
74
75
76
77
78
79
80
81
82
[workspace]
resolver = "2"
members = [
"gitjobs-server",
"gitjobs-syncer"
]
[workspace.package]
version = "0.0.1"
license = "Apache-2.0"
edition = "2024"
rust-version = "1.96.1"
[workspace.dependencies]
anyhow = "1.0.103"
askama = { version = "0.16.0", features = ["serde_json"] }
async-trait = "0.1.89"
axum = { version = "0.8.9", features = ["macros", "multipart"] }
axum-login = "0.18.0"
axum-extra = { version = "0.12.6", features = ["form", "typed-header"] }
axum-messages = "0.8.0"
cached = { version = "2.0.2", features = ["async"] }
chrono = { version = "0.4.45", features = ["serde"] }
chrono-tz = { version = "0.10.4", features = ["serde"] }
clap = { version = "4.6.1", features = ["derive"] }
deadpool-postgres = { version = "0.14.1", features = ["serde"] }
emojis = "0.9.0"
figment = { version = "0.10.19", features = ["yaml", "env"] }
futures = "0.3.32"
garde = { version = "0.23.0", features = ["derive", "url", "email"] }
human_format = "1.2.1"
image = "0.25.10"
lettre = { version = "0.11.22", default-features = false, features = ["builder", "hostname", "pool", "smtp-transport", "tokio1-rustls-tls"] }
markdown = "1.0.0"
mime_guess = "2.0.5"
minify-html = "0.18.1"
mockall = "0.15.0"
num-format = "0.4.4"
oauth2 = "5.0.0"
openidconnect = { version = "4.0.1", features = ["accept-rfc3339-timestamps"] }
openssl = { version = "0.10.81", features = ["vendored"] }
palette = "0.7.6"
password-auth = "1.0.0"
percent-encoding = "2.3.2"
postgres-openssl = "0.5.3"
quick-xml = "0.41.0"
rand = "0.10.2"
regex = "1.12.4"
reqwest = { version = "0.13.4", features = ["json"] }
rust-embed = "8.11.0"
serde = { version = "1.0.228", features = ["derive"] }
serde_html_form = "0.4.1"
serde_json = "1.0.150"
serde_qs = { version = "1.1.2", features = ["axum"] }
serde_with = "3.21.0"
sha2 = "0.11.0"
strum = { version = "0.28.0", features = ["derive"] }
thiserror = "2.0.18"
time = "0.3.53"
tokio = { version = "1.52.3", features = [
"macros",
"process",
"rt-multi-thread",
"signal",
"sync",
"time",
] }
tokio-postgres = { version = "0.7.18", features = [
"with-chrono-0_4",
"with-serde_json-1",
"with-time-0_3",
"with-uuid-1",
] }
tokio-util = { version = "0.7.18", features = ["full"] }
tower = "0.5.3"
tower-http = { version = "0.7.0", features = ["auth", "fs", "set-header", "trace"] }
tower-sessions = { version = "0.14.0", features = ["signed"] }
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.23", features = ["env-filter", "json"] }
unicode-segmentation = "1.13.3"
uuid = { version = "1.23.4", features = ["serde", "v4"] }
which = "8.0.4"