-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
81 lines (74 loc) · 2.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[package]
name = "ap-lobby"
version = "0.1.0"
edition = "2021"
default-run = "ap-lobby"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
apwm = { git = "https://github.com/Eijebong/APWM.git" }
anyhow = "1.0.86"
askama = { git = "https://github.com/djc/askama", features = ["with-rocket"] }
askama_rocket = { git = "https://github.com/djc/askama" }
base64 = "0.22"
chrono = "0.4.38"
diesel = { version = "2.2.2", features = ["uuid", "chrono", "serde_json"] }
diesel-async = { version = "0.5", features = ["postgres", "deadpool", "async-connection-wrapper"] }
diesel_migrations = { version = "2.2.0", features = ["postgres"] }
dotenvy = "0.15.7"
http = "1.1.0"
itertools = "0.13.0"
once_cell = "1.19.0"
prometheus = { version = "0.13.4", default-features = false }
reqwest = { version = "0.12", features = ["multipart", "json"] }
rocket = { version = "0.5.1", features = ["uuid", "secrets", "json"] }
rocket_oauth2 = "0.5.0"
rocket_prometheus = "0.10.1"
rustls = "0.23.12"
tokio-postgres = "0.7.11"
tokio-postgres-rustls = "0.12.0"
rust-embed = { version = "8.5.0", features = ["rocket"] }
serde = { version = "1.0.208", features = ["derive"] }
serde_json = "1.0.125"
serde_yaml = "0.9.34"
uuid = { version = "1.10.0", features = ["v4"] }
yaml-split = "0.4.0"
zip = "2.1.6"
semver = "1.0.23"
git2 = "0.19.0"
log = "0.4.22"
env_logger = "0.11.5"
tokio = { version = "1.39.2", features = ["sync"] }
deadpool = "0.12.1"
futures-util = "0.3.30"
rustls-pki-types = "1.8.0"
tracing = "0.1.40"
opentelemetry = "0.24.0"
opentelemetry_sdk = { version = "0.24.1", features = ["rt-tokio", "tokio"] }
opentelemetry-otlp = "0.17.0"
tracing-opentelemetry = "0.25.0"
tracing-subscriber = "0.3.18"
opentelemetry-semantic-conventions = "0.16.0"
opentelemetry-http = "0.13.0"
counter = "0.6.0"
comrak = { version = "0.31", default-features = false }
wq = { git = "https://github.com/Eijebong/wq.git" }
sentry = "0.35.0"
sentry-tracing = "0.35.0"
tracing-core = "0.1.33"
[profile.dev.package.askama_derive]
opt-level = 3
[build-dependencies]
anyhow = "1.0.86"
sha2 = "0.10.8"
walkdir = "2.5.0"
git2 = "0.19"
[patch.crates-io]
rocket = { git = "https://github.com/Eijebong/Rocket.git", branch = "0.6.0-dev" }
rocket_prometheus = { git = "https://github.com/Eijebong/rocket_prometheus.git", branch = "0.6.0-dev" }
rocket_oauth2 = { git = "https://github.com/jebrosen/rocket_oauth2.git" }
sentry-tracing = { git = "http://github.com/Eijebong/sentry-rust" }
sentry = { git = "http://github.com/Eijebong/sentry-rust" }
#[patch."https://github.com/Eijebong/APWM.git"]
#apwm = { path = "../apwm" }
#[patch."https://github.com/Eijebong/wq.git"]
#wq = { path = "../wq" }