-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathCargo.toml
More file actions
85 lines (77 loc) · 3.63 KB
/
Cargo.toml
File metadata and controls
85 lines (77 loc) · 3.63 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
83
84
85
[workspace]
resolver = "3"
members = ["motis-openapi-progenitor", "server"]
[workspace.package]
edition = "2024"
repository = "https://github.com/TUM-Dev/navigatum"
[workspace.dependencies]
ab_glyph = { version = "0.2.32", default-features = false }
actix-cors = "0.7.1"
actix-files = "0.6"
actix-governor = { version = "0.10.0", features = ["logger"] }
actix-middleware-etag = "0.4.6"
actix-web = { version = "4.13.0", default-features = false, features = ["compress-brotli", "compress-gzip", "compress-zstd", "cookies", "http2", "macros"] }
actix-web-prom = { version = "0.10.0", default-features = false, features = [] }
anyhow = { version = "1.0.102", features = ["backtrace"] }
base64 = "0.22.1"
chroma-forge = "1.0.0"
chrono = { version = "0.4", default-features = false, features = ["serde"] }
fast_qr = { version = "0.13.1", features = ["image"] }
futures = "0.3.32"
image = { version = "0.25.9", default-features = false, features = ["jpeg", "png", "webp"] }
imageproc = "0.26.0"
insta = "1.46.3"
itertools = "0.14.0"
jsonwebtoken = { version = "10.3.0", default-features = false, features = ["aws_lc_rs"] }
logos = "0.16.1"
meilisearch-sdk = { version = "0.32.0", default-features = false, features = ["reqwest", "jwt_aws_lc_rs"] }
moka = { version = "0.12", features = ["future"] }
motis-openapi-progenitor = { version = "0.4.0", path = "motis-openapi-progenitor" }
oauth2 = { version = "5.0.0", default-features = false, features = ["rustls-tls", "reqwest"] }
octocrab = { version = "0.49", default-features = false, features = ["default-client", "retry", "rustls", "rustls-webpki-tokio", "rustls-aws-lc-rs", "jwt-aws-lc-rs"] }
polars = { version = "0.53.0", features = ["dtype-struct", "dtype-date", "dtype-datetime", "dtype-duration", "parquet"], default-features = false }
pretty_assertions = "1.4.1"
progenitor-client = "0.11.2"
rand = "0.10.0"
regex = "1.12.3"
reqwest = { version = "0.12", default-features = false, features = ["gzip", "hickory-dns", "http2", "json", "rustls-tls"] }
rstest = "0.26.1"
rustls = "0.23.36"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0.149", features = ["raw_value"] }
serde_with = { version = "3.16.1", default-features = false, features = [] }
serde_yaml = "0.9.34"
sqlx = { version = "0.8.6", features = ['chrono', 'json', 'macros', 'migrate', 'postgres', 'runtime-tokio', 'tls-rustls'], default-features = false }
tempfile = "3.25.0"
testcontainers = { version = "0.27.1", features = ["watchdog"] }
testcontainers-modules = { version = "0.15.0", features = ["meilisearch", "postgres"] }
tokio = { version = "1.49", default-features = false }
tracing = "0.1.44"
tracing-actix-web = "0.7.21"
tracing-log = { version = "0.2.0", features = ["std", "log-tracer", "interest-cache"] }
tracing-subscriber = { version = "0.3.22", features = ["env-filter", "json", "fmt"] }
tracing-test = "0.2.6"
unicode-truncate = "2.0.1"
url = "2.5.8"
utoipa = { version = "5.4.0", features = ["yaml", "chrono", "actix_extras", "url"] }
utoipa-actix-web = "0.1.2"
utoipa-redoc = { version = "6.0.0", features = ["actix-web"] }
valhalla-client = { version = "0.5.0", default-features = false }
[profile.release]
strip = false
lto = false
[profile.dev.package]
# https://insta.rs/docs/quickstart/
insta.opt-level = 3
similar.opt-level = 3
# Enable max optimizations for some dependencies, but not for our code
# nessesary to get acceptable performance out of the image processing code
[profile.dev.package.image]
opt-level = 3
[profile.dev.package.imageproc]
opt-level = 3
[profile.dev.package.ab_glyph]
opt-level = 3
# https://github.com/launchbadge/sqlx?tab=readme-ov-file#compile-time-verification
[profile.dev.package.sqlx-macros]
opt-level = 3