-
Notifications
You must be signed in to change notification settings - Fork 145
/
Copy pathCargo.toml
53 lines (51 loc) · 2.03 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
[profile.release]
debug = true
[workspace]
resolver = "2"
members = [
"core/api-keys",
"core/notifications",
"lib/tracing-rs",
"lib/es-entity-rs",
"lib/job-executor-rs",
]
[workspace.dependencies]
anyhow = "1.0.90"
async-graphql = { version = "7.0.6", default-features = false, features = ["tracing", "chrono", "playground"] }
async-graphql-axum = "7.0.3"
axum = { version = "0.7.5", features = ["macros"] }
axum-extra = { version = "0.9.4", default-features = false, features = ["tracing", "typed-header"] }
base64 = { version = "0.22.1" }
jsonwebtoken = "9.3.0"
clap = { version = "4.5.18", features = ["derive", "env"] }
derive_builder = "0.13.1"
serde = { version = "1.0.203", features = ["derive"] }
tokio = { version = "1.38", features = ["full"] }
reqwest = { version = "0.11.27", default-features = false, features = ["json", "rustls-tls"] }
thiserror = "1.0.64"
serde_yaml = "0.9.33"
serde_json = "1.0.129"
chrono = { version = "0.4.38", features = ["clock", "serde"], default-features = false }
futures = "0.3.31"
sqlx = { version = "0.7.4", features = ["runtime-tokio-rustls", "postgres", "uuid", "chrono"] }
uuid = { version = "1.11.0", features = ["serde", "v4"] }
rand = "0.8.5"
serde_with = "3.8.1"
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "json"] }
tracing-opentelemetry = "0.20.0"
opentelemetry-otlp = { version = "0.13.0", features = ["http-proto", "reqwest-client"] }
opentelemetry = { version = "0.20.0", features = ["trace", "rt-tokio"]}
opentelemetry-semantic-conventions = "0.12.0"
opentelemetry-http = "0.9.0"
http = "0.2.12"
tonic = "0.10.2"
tonic-build = { version = "0.10.2", features = ["prost"] }
tonic-health = "0.10.2"
prost = "0.12"
rust-i18n = "3"
google-fcm1 = "5.0.4"
sqlxmq = { version = "0.5", default-features = false, features = ["runtime-tokio-rustls"] }
lettre = { version = "0.11.7", default-features = false, features = ["builder", "tokio1", "tokio1-rustls-tls", "smtp-transport"] }
handlebars = "5.1.2"
rusty-money = { version = "0.4.1", features = ["iso", "crypto" ] }