-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (38 loc) · 994 Bytes
/
Cargo.toml
File metadata and controls
48 lines (38 loc) · 994 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
43
44
45
46
47
48
[workspace]
resolver = "2"
members = [
"protocol",
"client",
"proxy",
]
[workspace.package]
version = "0.2.0"
edition = "2021"
authors = ["LightSpeed Contributors"]
license = "MIT"
repository = "https://github.com/ShibbityShwab/lightspeed"
description = "Zero-cost global network optimizer — reduce and stabilize ping for multiplayer games"
[workspace.dependencies]
# Async runtime
tokio = { version = "1", features = ["full"] }
# Networking
socket2 = { version = "0.5", features = ["all"] }
bytes = "1"
# Serialization / Config
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
# CLI
clap = { version = "4", features = ["derive"] }
# Logging / Tracing
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
# Error handling
anyhow = "1"
thiserror = "1"
# Internal crates
lightspeed-protocol = { path = "protocol" }
# Metrics
prometheus = "0.13"
# Time
chrono = { version = "0.4", features = ["serde"] }