-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
82 lines (77 loc) · 2.25 KB
/
Copy pathCargo.toml
File metadata and controls
82 lines (77 loc) · 2.25 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
[workspace]
resolver = "2"
members = [
"crates/deepmail-common",
"crates/deepmail-gateway",
"crates/deepmail-auth",
"crates/deepmail-tenant",
"crates/deepmail-ingest",
"crates/deepmail-parser",
"crates/deepmail-otp-smtp",
"crates/deepmail-header",
"crates/deepmail-dkim",
"crates/deepmail-geo",
"crates/deepmail-ip",
"crates/deepmail-intel",
"crates/deepmail-ioc",
"crates/deepmail-homograph",
"crates/deepmail-body",
"crates/deepmail-sandbox-url",
"crates/deepmail-sandbox-file",
"crates/deepmail-sandbox-dynamic",
"crates/deepmail-hashdb",
"crates/deepmail-scoring",
"crates/deepmail-graph",
"crates/deepmail-report",
"crates/deepmail-billing",
"crates/deepmail-notify",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
authors = ["DeepMail Engineering"]
license = "UNLICENSED"
[workspace.dependencies]
tokio = { version = "1", features = ["full"] }
tonic = { version = "0.11", features = ["transport", "tls"] }
prost = "0.12"
prost-types = "0.12"
async-nats = "0.35"
sqlx = { version = "0.7", features = ["postgres", "runtime-tokio", "tls-rustls", "macros", "uuid", "chrono", "json", "ipnetwork"] }
uuid = { version = "1", features = ["v4", "v5", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "1"
anyhow = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json", "fmt"] }
config = "0.14"
axum = { version = "0.7", features = ["multipart", "ws", "macros"] }
tower = "0.4"
tower-http = { version = "0.5", features = ["cors", "trace", "compression-gzip", "limit"] }
tokio-tungstenite = "0.21"
async-graphql = { version = "7", features = ["tracing", "uuid", "chrono"] }
async-graphql-axum = "7"
redis = { version = "0.24", features = ["tokio-comp", "connection-manager"] }
reqwest = { version = "0.11", features = ["json", "rustls-tls"] }
argon2 = "0.5"
jsonwebtoken = "9"
rand = "0.8"
sha2 = "0.10"
hex = "0.4"
bytes = "1"
futures = "0.3"
once_cell = "1"
tonic-build = "0.11"
prost-build = "0.12"
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1
panic = "abort"
strip = "symbols"
[profile.dev]
opt-level = 0
debug = true
split-debuginfo = "unpacked"