-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
54 lines (48 loc) · 2.05 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
[package]
name = "mb-mail-service"
version = "0.4.1"
edition = "2021"
publish = false
license = "GPL-2.0-or-later"
[package.metadata.mf1]
locales = ["en", "es", "de", "fr", "lt"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = { version = "0.7.5", features = ["tracing", "macros"] }
html2text = { version = "0.13.3", features = ["css"] }
lettre = { version = "0.11.8", features = ["tokio1", "builder", "smtp-transport", "pool", "tokio1-rustls-tls", "tracing"], default-features = false }
listenfd = "1.0.1"
mrmx-macros = { version = "0.1.0", git = "https://github.com/JadedBlueEyes/mrmx.git" }
mrmx = { version = "0.1.0", git = "https://github.com/JadedBlueEyes/mrmx.git" }
mrml = { version = "4.0.0", git = "https://github.com/JadedBlueEyes/mrml.git", branch = "jade/fragment", features = ["render"], default-features = false}
serde_json = "1.0.128"
strum = "0.26.3"
thiserror = "2.0.3"
tokio = { version = "1.40.0", features = ["full"] }
tower = { version = "0.5.1", features = ["util"] }
tower-http = { version = "0.6.1", features = ["timeout", "trace"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
utoipa = { version = "5.1.1", features = ["axum_extras"] }
utoipa-swagger-ui = { version = "8.0.1", features = ["axum"] }
serde = { version = "1.0.210", features = ["derive"] }
mf1 = "0.1.5"
sentry = { version = "0.34.0", features = ["tracing", "tower", "tower-http"] }
futures-util = "0.3.30"
futures = "0.3.30"
dashmap = { version = "6.1.0", features = ["serde"] }
config = { version = "0.14.0", default-features = false, features = ["convert-case"] }
convert_case = "0.6.0"
monostate = "0.1.13"
reqwest = { version = "0.12.7", default-features = false }
metrics = "0.24.0"
axum-prometheus = "0.7.0"
# metrics-exporter-prometheus = { version = "0.15.3", default-features = false, features = ["http-listener"] }
git-testament = "0.2.5"
html-escape = "0.2.13"
[dev-dependencies]
expect-test = "1.5.0"
axum-test = "16.1.0"
[profile.release]
lto = true
codegen-units = 1