-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
386 lines (320 loc) · 9.62 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
[workspace]
default-members = ["crates/cli"]
members = ["crates/*"]
resolver = "2"
# Updated in the CI with a `sed` command
package.version = "0.12.0"
package.license = "AGPL-3.0-only"
package.authors = ["Element Backend Team"]
package.edition = "2021"
package.homepage = "https://element-hq.github.io/matrix-authentication-service/"
package.repository = "https://github.com/element-hq/matrix-authentication-service/"
[workspace.lints.rust]
unsafe_code = "forbid"
[workspace.lints.clippy]
# We use groups as good defaults, but with a lower priority so that we can override them
all = { level = "deny", priority = -1 }
pedantic = { level = "warn", priority = -1 }
str_to_string = "deny"
[workspace.lints.rustdoc]
broken_intra_doc_links = "deny"
[workspace.dependencies]
# Workspace crates
mas-axum-utils = { path = "./crates/axum-utils/", version = "=0.12.0" }
mas-cli = { path = "./crates/cli/", version = "=0.12.0" }
mas-config = { path = "./crates/config/", version = "=0.12.0" }
mas-data-model = { path = "./crates/data-model/", version = "=0.12.0" }
mas-email = { path = "./crates/email/", version = "=0.12.0" }
mas-graphql = { path = "./crates/graphql/", version = "=0.12.0" }
mas-handlers = { path = "./crates/handlers/", version = "=0.12.0" }
mas-http = { path = "./crates/http/", version = "=0.12.0" }
mas-i18n = { path = "./crates/i18n/", version = "=0.12.0" }
mas-i18n-scan = { path = "./crates/i18n-scan/", version = "=0.12.0" }
mas-iana = { path = "./crates/iana/", version = "=0.12.0" }
mas-iana-codegen = { path = "./crates/iana-codegen/", version = "=0.12.0" }
mas-jose = { path = "./crates/jose/", version = "=0.12.0" }
mas-keystore = { path = "./crates/keystore/", version = "=0.12.0" }
mas-listener = { path = "./crates/listener/", version = "=0.12.0" }
mas-matrix = { path = "./crates/matrix/", version = "=0.12.0" }
mas-matrix-synapse = { path = "./crates/matrix-synapse/", version = "=0.12.0" }
mas-oidc-client = { path = "./crates/oidc-client/", version = "=0.12.0" }
mas-policy = { path = "./crates/policy/", version = "=0.12.0" }
mas-router = { path = "./crates/router/", version = "=0.12.0" }
mas-spa = { path = "./crates/spa/", version = "=0.12.0" }
mas-storage = { path = "./crates/storage/", version = "=0.12.0" }
mas-storage-pg = { path = "./crates/storage-pg/", version = "=0.12.0" }
mas-tasks = { path = "./crates/tasks/", version = "=0.12.0" }
mas-templates = { path = "./crates/templates/", version = "=0.12.0" }
mas-tower = { path = "./crates/tower/", version = "=0.12.0" }
oauth2-types = { path = "./crates/oauth2-types/", version = "=0.12.0" }
# OpenAPI schema generation and validation
[workspace.dependencies.aide]
version = "0.13.4"
features = ["axum", "axum-headers", "macros"]
# GraphQL server
[workspace.dependencies.async-graphql]
version = "7.0.13"
features = ["chrono", "url", "tracing"]
# Utility to write and implement async traits
[workspace.dependencies.async-trait]
version = "0.1.83"
# High-level error handling
[workspace.dependencies.anyhow]
version = "1.0.94"
# HTTP router
[workspace.dependencies.axum]
version = "0.7.9"
# Extra utilities for Axum
[workspace.dependencies.axum-extra]
version = "0.9.6"
features = ["cookie-private", "cookie-key-expansion", "typed-header"]
# Bytes
[workspace.dependencies.bytes]
version = "1.9.0"
# UTF-8 paths
[workspace.dependencies.camino]
version = "1.1.9"
# Time utilities
[workspace.dependencies.chrono]
version = "0.4.38"
default-features = false
features = ["serde", "clock"]
# CLI argument parsing
[workspace.dependencies.clap]
version = "4.5.21"
features = ["derive"]
# Cron expressions
[workspace.dependencies.cron]
version = "0.13.0"
# Elliptic curve cryptography
[workspace.dependencies.elliptic-curve]
version = "0.13.8"
features = ["std", "pem", "sec1"]
# Configuration loading
[workspace.dependencies.figment]
version = "0.10.19"
features = ["env", "yaml", "test"]
# Utilities for dealing with futures
[workspace.dependencies.futures-util]
version = "0.3.31"
# Rate-limiting
[workspace.dependencies.governor]
version = "0.7.0"
# HTTP headers
[workspace.dependencies.headers]
version = "0.4.0"
# HTTP request/response
[workspace.dependencies.http]
version = "1.2.0"
# HTTP body trait
[workspace.dependencies.http-body]
version = "1.0.1"
# http-body utilities
[workspace.dependencies.http-body-util]
version = "0.1.2"
# HTTP client and server
[workspace.dependencies.hyper]
version = "1.5.1"
features = ["client", "http1", "http2"]
# Additional Hyper utilties
[workspace.dependencies.hyper-util]
version = "0.1.10"
features = [
"client",
"server",
"server-auto",
"service",
"http1",
"http2",
"tokio",
]
# Hyper Rustls support
[workspace.dependencies.hyper-rustls]
version = "0.27.3"
features = ["http1", "http2"]
default-features = false
# Snapshot testing
[workspace.dependencies.insta]
version = "1.41.1"
features = ["yaml", "json"]
# Email sending
[workspace.dependencies.lettre]
version = "0.11.10"
default-features = false
features = [
"tokio1-rustls-tls",
"hostname",
"builder",
"tracing",
"pool",
"smtp-transport",
"sendmail-transport",
]
# Templates
[workspace.dependencies.minijinja]
version = "2.5.0"
features = ["loader", "json", "speedups", "unstable_machinery"]
# Additional filters for minijinja
[workspace.dependencies.minijinja-contrib]
version = "2.5.0"
features = ["pycompat"]
# Utilities to deal with non-zero values
[workspace.dependencies.nonzero_ext]
version = "0.3.0"
# K256 elliptic curve
[workspace.dependencies.k256]
version = "0.13.4"
features = ["std"]
# P256 elliptic curve
[workspace.dependencies.p256]
version = "0.13.2"
features = ["std"]
# P384 elliptic curve
[workspace.dependencies.p384]
version = "0.13.0"
features = ["std"]
# PEM file decoding
[workspace.dependencies.pem-rfc7468]
version = "0.7.0"
features = ["std"]
# PKCS#1 encoding
[workspace.dependencies.pkcs1]
version = "0.7.5"
features = ["std"]
# PKCS#8 encoding
[workspace.dependencies.pkcs8]
version = "0.10.2"
features = ["std", "pkcs5", "encryption"]
# Random values
[workspace.dependencies.rand]
version = "0.8.5"
# High-level HTTP client
[workspace.dependencies.reqwest]
version = "0.12.9"
default-features = false
features = ["http2", "rustls-tls-manual-roots", "charset", "json", "socks"]
# TLS stack
[workspace.dependencies.rustls]
version = "0.23.19"
# Use platform-specific verifier for TLS
[workspace.dependencies.rustls-platform-verifier]
version = "0.3.4"
# JSON Schema generation
[workspace.dependencies.schemars]
version = "0.8.21"
features = ["url", "chrono", "preserve_order"]
# Query builder
[workspace.dependencies.sea-query]
version = "0.32.1"
features = ["derive", "attr", "with-uuid", "with-chrono", "postgres-array"]
# Query builder
[workspace.dependencies.sea-query-binder]
version = "0.7.0"
features = [
"sqlx",
"sqlx-postgres",
"with-uuid",
"with-chrono",
"postgres-array",
]
# Sentry error tracking
[workspace.dependencies.sentry]
version = "0.34.0"
default-features = false
features = ["backtrace", "contexts", "panic", "tower", "reqwest"]
# Sentry tower layer
[workspace.dependencies.sentry-tower]
version = "0.34.0"
features = ["http"]
# Sentry tracing integration
[workspace.dependencies.sentry-tracing]
version = "0.34.0"
# Serialization and deserialization
[workspace.dependencies.serde]
version = "1.0.216"
features = ["derive"] # Most of the time, if we need serde, we need derive
# JSON serialization and deserialization
[workspace.dependencies.serde_json]
version = "1.0.133"
features = ["preserve_order"]
# SQL database support
[workspace.dependencies.sqlx]
version = "0.8.2"
features = [
"runtime-tokio",
"tls-rustls-aws-lc-rs",
"postgres",
"migrate",
"chrono",
"json",
"uuid",
"ipnetwork",
]
# Custom error types
[workspace.dependencies.thiserror]
version = "2.0.3"
# Async runtime
[workspace.dependencies.tokio]
version = "1.42.0"
features = ["full"]
# Useful async utilities
[workspace.dependencies.tokio-util]
version = "0.7.13"
features = ["rt"]
# Tower services
[workspace.dependencies.tower]
version = "0.5.1"
features = ["util"]
# Tower HTTP layers
[workspace.dependencies.tower-http]
version = "0.6.2"
features = ["cors", "fs", "add-extension", "set-header"]
# Logging and tracing
[workspace.dependencies.tracing]
version = "0.1.41"
[workspace.dependencies.tracing-subscriber]
version = "0.3.19"
# OpenTelemetry
[workspace.dependencies.opentelemetry]
version = "0.24.0"
features = ["trace", "metrics"]
[workspace.dependencies.opentelemetry-http]
version = "0.13.0"
features = ["reqwest"]
[workspace.dependencies.opentelemetry-semantic-conventions]
version = "0.16.0"
[workspace.dependencies.tracing-opentelemetry]
version = "0.25.0"
default-features = false
# URL manipulation
[workspace.dependencies.url]
version = "2.5.4"
features = ["serde"]
# ULID support
[workspace.dependencies.ulid]
version = "1.1.3"
features = ["serde"]
# HTTP mock server
[workspace.dependencies.wiremock]
version = "0.6.2"
# A few profile opt-level tweaks to make the test suite run faster
[profile.dev.package]
argon2.opt-level = 3
bcrypt.opt-level = 3
block-buffer.opt-level = 3
cranelift-codegen.opt-level = 3
digest.opt-level = 3
hmac.opt-level = 3
generic-array.opt-level = 3
num-bigint-dig.opt-level = 3
pbkdf2.opt-level = 3
rayon.opt-level = 3
regalloc2.opt-level = 3
sha2.opt-level = 3
sqlx-macros.opt-level = 3
[patch.crates-io]
sqlx = { git = "https://github.com/launchbadge/sqlx.git", branch = "main" }
sqlx-core = { git = "https://github.com/launchbadge/sqlx.git", branch = "main" }
sqlx-macros = { git = "https://github.com/launchbadge/sqlx.git", branch = "main" }
sqlx-macros-core = { git = "https://github.com/launchbadge/sqlx.git", branch = "main" }
sqlx-postgres = { git = "https://github.com/launchbadge/sqlx.git", branch = "main" }