-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
74 lines (60 loc) · 1.44 KB
/
Cargo.toml
File metadata and controls
74 lines (60 loc) · 1.44 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
[package]
name = "explorer"
version = "0.1.0"
edition = "2021"
default-run = "standalone"
[dependencies]
anyhow = "1.0"
mongodb = "3.2.3"
chrono = "0.4"
log = "0.4"
flexi_logger = "0.30"
diesel = { version = "2.2", features = [ "postgres", "chrono", "serde_json" ] }
dotenvy = "0.15.7"
serde_json = "1.0"
reqwest = "0.12.15"
amq-protocol-types = "8.1"
lapin = "2.5"
base64 = "0.22"
futures = "0.3"
[dependencies.uuid]
version = "1.11"
features = [
"v4", # Lets you generate random UUIDs
"fast-rng", # Use a faster (but still sufficiently random) RNG
"macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
]
[dependencies.warp]
version = "0.3"
features = ["tls"]
[dependencies.tokio]
version = "1.45"
features = ["full"]
[dependencies.bson]
version = "2.14"
features = ["chrono-0_4"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.bf_sparta]
git = "https://github.com/Community-network/sparta-rust"
branch = "main"
[dependencies.grpc-rust]
git = "https://github.com/community-network/grpc-rust"
branch = "main"
# [dependencies.openapi]
# path = "../gametools-client-rust"
# git = "https://github.com/community-network/gametools-client-rust"
# branch = "main"
[[bin]]
name = "standalone"
path = "src/main.rs"
[[bin]]
name = "rabbit_host"
path = "src/rabbit_host.rs"
[[bin]]
name = "rabbit_worker"
path = "src/rabbit_worker.rs"
[[bin]]
name = "check_code"
path = "src/check_code.rs"