-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (37 loc) · 977 Bytes
/
Cargo.toml
File metadata and controls
42 lines (37 loc) · 977 Bytes
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
[package]
name = "HyperSync"
version = "0.1.0"
edition = "2024"
[profile.release]
opt-level = 3
lto = true
strip = true
codegen-units = 1
[dependencies]
migration = { path = "migration" }
axum = "0.8.6"
tokio = {version = "1.48.0", features = ["full"]}
sea-orm = { version = "1.1.17", features = [
"sqlx-mysql", # `DATABASE_DRIVER` feature
"runtime-tokio-rustls",
"macros"
] }
lazy_static = "1.5.0"
dashmap = { version = "6.1.0", features = ["serde"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.20", features = ["env-filter"] }
dotenv = "0.15.0"
tower-http = {version = "0.6.6", features = ["fs", "cors", "limit"]}
tower = "0.5.2"
tower_governor = "0.8.0"
serde = "1.0.228"
serde_json = "1.0.145"
orion = "0.17.11"
rand = "0.9.2"
base64 = "0.22.1"
uuid = { version = "1.4", features = ["v7"] }
chrono = "0.4.42"
socketioxide = {version = "0.18.0",features = ["extensions", "state"]}
tower-layer = "0.3.3"
sea-query = "0.32.7"
http = "1.3.1"