-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
65 lines (62 loc) · 1.57 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
[workspace]
resolver = "2"
members = [
"backend/monaxia",
"backend/monaxia-data",
"backend/monaxia-db",
"backend/monaxia-job",
"backend/monaxia-repository",
"backend/monaxia-queue",
]
[workspace.dependencies]
anyhow = "1.0.71"
async-trait = "0.1.72"
bincode = "1.3.3"
futures = "0.3.28"
lapin = "2.3.1"
once_cell = "1.18.0"
regex = "1.9.1"
rsa = "0.9.2"
sea-query = { version = "0.30.0", features = [
"derive",
"thread-safe",
"with-time",
"with-uuid",
"with-json",
] }
sea-query-binder = { version = "0.5.0", features = [
"sqlx-postgres",
"with-time",
"with-uuid",
"with-json",
] }
serde = { version = "1.0.171", features = ["derive"] }
serde_json = "1.0.103"
sqlx = { version = "0.7.1", features = [
"runtime-tokio",
"postgres",
"json",
"uuid",
"time",
] }
time = { version = "0.3.23", features = [
"macros",
"alloc",
"formatting",
"parsing",
"serde",
] }
thiserror = "1.0.44"
tokio = { version = "1.29.1", features = ["full"] }
tokio-stream = { version = "0.1.14", features = ["full"] }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
url = { version = "2.4.0", features = ["serde"] }
uuid = { version = "1.4.1", features = ["v4", "v7", "fast-rng"] }
monaxia-data = { path = "./backend/monaxia-data" }
monaxia-db = { path = "./backend/monaxia-db" }
monaxia-job = { path = "./backend/monaxia-job" }
monaxia-repository = { path = "./backend/monaxia-repository" }
monaxia-queue = { path = "./backend/monaxia-queue" }
[profile.dev.package.num-bigint-dig]
opt-level = 3