-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
74 lines (61 loc) · 1.68 KB
/
Copy pathCargo.toml
File metadata and controls
74 lines (61 loc) · 1.68 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
[workspace]
members = [
"packages/shared/protocol",
"packages/services/reticulum/core",
"packages/services/reticulum/core/migrations",
"packages/services/reticulum/auth",
"packages/services/reticulum/hub",
"packages/services/reticulum/presence",
"packages/services/reticulum/storage",
"packages/services/reticulum/sfu",
"packages/services/reticulum/avatar",
]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2021"
authors = ["GraphWiz-XR Contributors"]
license = "MPL-2.0"
[workspace.dependencies]
# Async runtime
tokio = { version = "1.35", features = ["full"] }
async-trait = "0.1"
# Web framework
actix-web = "4.4"
actix-cors = "0.7"
# Database
sqlx = { version = "0.7", features = ["postgres", "runtime-tokio", "chrono", "uuid"] }
sea-orm = { version = "0.12", features = ["sqlx-postgres", "runtime-tokio"] }
# Serialization
prost = "0.12"
prost-build = "0.12"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Authentication
jsonwebtoken = "9.2"
argon2 = "0.5"
# Networking & WebTransport
wtransport = "0.1"
# Monitoring
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Utils
uuid = { version = "1.6", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
thiserror = "1.0"
anyhow = "1.0"
futures-util = "0.3"
config = "0.14"
sea-orm-migration = "0.12"
validator = { version = "0.18", features = ["derive"] }
# Caching
redis = { version = "0.24", features = ["tokio-comp", "connection-manager"] }
# Logging
log = "0.4"
[profile.dev]
debug = true
opt-level = 0
[profile.release]
opt-level = 3
lto = true
codegen-units = 1