This repository has been archived by the owner on Aug 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
82 lines (78 loc) · 2.27 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
82
[package]
name = "dispatcher"
version = "0.4.27"
authors = ["Andrei Nesterov <ae.nesterov@gmail.com>"]
description = "Service managing classrooms"
readme = "README.md"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
async-trait = "0.1"
axum = { version = "0.6", features = ["headers"] }
chrono = { version = "0.4", features = ["serde"] }
config = { version = "0.13", default-features = false, features = ["toml"] }
futures = "0.3"
futures-channel = "0.3"
hashring = "0.3"
headers = "0.3"
http = "0.2"
humantime-serde = "1.1"
hyper = { version = "0.14", features = ["server"] }
once_cell = "1.17"
parking_lot = "0.12"
percent-encoding = "2.1"
pin-utils = "0.1"
prometheus = "0.13"
prometheus-static-metric = "0.5"
quaint = { version = "0.1", features = ["uuid-0_8", "chrono-0_4"] }
rand = "0.8"
reqwest = "0.11"
sentry = { version = "0.31", default-features = true, features = ["reqwest"] }
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
serde_qs = "0.12"
signal-hook = "0.3"
signal-hook-tokio = { version = "0.3", features = ["futures-v0_3"] }
sqlx = { version = "0.6", features = [
"offline",
"postgres",
"macros",
"uuid",
"chrono",
"json",
"bigdecimal",
"runtime-tokio-native-tls",
] }
svc-agent = { version = "0.20", features = ["sqlx"] }
svc-authn = { version = "0.8", features = ["jose", "sqlx"] }
svc-authz = "0.12"
svc-error = { version = "0.5", features = [
"svc-agent",
"svc-authn",
"svc-authz",
"sentry-extension",
"sqlx",
] }
svc-utils = { version = "0.7", features = ["log-middleware", "metrics-middleware", "cors-middleware", "authn-extractor"] }
tokio = { version = "1.28", features = ["full"] }
tower = { version = "0.4", features = [ "timeout" ] }
tracing = "0.1"
tracing-appender = "0.2"
tracing-attributes = "0.1"
tracing-error = "0.2"
tracing-futures = "0.2"
tracing-log = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
url = { version = "2.3", features = ["serde"] }
uuid = { version = "1.3", features = ["v4", "serde"] }
vec1 = { version = "1.10", features = ["serde"] }
[dev-dependencies]
lazy_static = "1.4"
mockall = "0.11"
[dependencies.dotenv]
version = "0.15"
optional = true
[profile.release]
debug = true